From bcf88550b169c7b2488085ee92aff9c19aaa1696 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 14:13:56 -0700 Subject: [PATCH 01/36] Add binary expression --- scripts/lib/buildExpressionContainer.ts | 7 +- scripts/lib/buildExpressionFromParams.ts | 21 ++- scripts/lib/expressionParamGuards.ts | 9 +- ...rent.ts => findNextExecutableAndParent.ts} | 90 +++++++-- scripts/lib/getConflictsToUnused.ts | 7 +- scripts/lib/hasUnboundVariables.ts | 8 +- scripts/lib/initializeExpressionContainer.ts | 9 +- scripts/lib/maxNestedFunctionDepth.ts | 8 +- scripts/lib/prioritizeExpression.ts | 175 ++++++++++++++++-- scripts/lib/replaceBinaryParentKey.ts | 126 +++++++++++++ scripts/lib/replaceCallParentKey.ts | 18 +- scripts/lib/replaceConditionalParentKey.ts | 21 ++- scripts/lib/replaceFuncParentKey.ts | 17 +- scripts/lib/resetExpression.ts | 18 +- scripts/lib/stepExpressionContainer.ts | 57 +++++- scripts/lib/steps/index.ts | 6 + scripts/lib/steps/stepToBinaryActive.ts | 15 ++ scripts/lib/steps/stepToBinaryProcessed.ts | 23 +++ src/lib/expressionTypeGuards.ts | 19 +- src/types/ExpressionParamTypes.ts | 8 + src/types/ExpressionTypes.ts | 60 ++++++ 21 files changed, 672 insertions(+), 50 deletions(-) rename scripts/lib/{findNextCallExpressionAndParent.ts => findNextExecutableAndParent.ts} (57%) create mode 100644 scripts/lib/replaceBinaryParentKey.ts create mode 100644 scripts/lib/steps/stepToBinaryActive.ts create mode 100644 scripts/lib/steps/stepToBinaryProcessed.ts diff --git a/scripts/lib/buildExpressionContainer.ts b/scripts/lib/buildExpressionContainer.ts index b48d9e664..887a4fb36 100644 --- a/scripts/lib/buildExpressionContainer.ts +++ b/scripts/lib/buildExpressionContainer.ts @@ -5,13 +5,15 @@ import { ExpressionParams, FunctionExpressionParams, ConditionalExpressionParams, - VariableExpressionParams + VariableExpressionParams, + BinaryExpressionParams } from 'src/types/ExpressionParamTypes' import { NonExecutableStepCall, StepChild, StepFunction, StepConditional, + StepBinary, StepVariable } from 'src/types/ExpressionTypes' @@ -27,6 +29,9 @@ 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> diff --git a/scripts/lib/buildExpressionFromParams.ts b/scripts/lib/buildExpressionFromParams.ts index c095e3929..cc5a0147d 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.first), + state: 'default', + priority: 0 + } } } 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/findNextCallExpressionAndParent.ts b/scripts/lib/findNextExecutableAndParent.ts similarity index 57% rename from scripts/lib/findNextCallExpressionAndParent.ts rename to scripts/lib/findNextExecutableAndParent.ts index 360b8aa5d..3a78cda86 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,7 +169,11 @@ 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 }) 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/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/prioritizeExpression.ts b/scripts/lib/prioritizeExpression.ts index 6ecf1e3d5..21a199223 100644 --- a/scripts/lib/prioritizeExpression.ts +++ b/scripts/lib/prioritizeExpression.ts @@ -3,12 +3,14 @@ import { isFunction, isVariable, isConditional, - isRepeat + isRepeat, + isBinary } from 'src/lib/expressionTypeGuards' import { CallExpression, Expression, - ConditionalExpression + ConditionalExpression, + BinaryExpression } from 'src/types/ExpressionTypes' function prioritizeCallExpressionHelper({ @@ -26,18 +28,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 +58,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 +98,91 @@ function prioritizeCallExpressionHelper({ } } +function prioritizeBinaryExpressionHelper({ + expression, + priority +}: { + expression: E + priority: number +}): { + expression: E + maxDescendantPriority: number +} { + let newArg: Expression + let newFunc: 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 + }) + } + + newFunc = funcResult.expression + currentPriority = funcResult.maxDescendantPriority + 1 + maxDescendantPriority = currentPriority + } else { + newFunc = 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 + }) + } + + newArg = argResult.expression + maxDescendantPriority = argResult.maxDescendantPriority + } else { + newArg = prioritizeExpressionHelper(expression.second) + } + + return { + expression: { + ...expression, + func: newFunc, + arg: newArg, + priority: currentPriority + }, + maxDescendantPriority + } +} + function prioritizeConditionalExpressionHelper< E extends ConditionalExpression >({ @@ -96,18 +201,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 +230,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 +258,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 +328,11 @@ function prioritizeExpressionHelper( ...expression, child: prioritizeExpressionHelper(expression.child) } + } else if (isBinary(expression)) { + return prioritizeBinaryExpressionHelper({ + priority: 1, + expression + }).expression } else { throw new Error() } @@ -268,6 +405,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() } 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/stepExpressionContainer.ts b/scripts/lib/stepExpressionContainer.ts index 95f747b38..d0bb521b3 100644 --- a/scripts/lib/stepExpressionContainer.ts +++ b/scripts/lib/stepExpressionContainer.ts @@ -1,12 +1,17 @@ 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 { + isCall, + isConditional, + isExecutableCallRegular +} from 'src/lib/expressionTypeGuards' import replaceFuncParentKey from 'scripts/lib/replaceFuncParentKey' import { removeCrossed, @@ -23,7 +28,9 @@ import { stepToConditionActive, stepToCaseProcessed, stepToShorthandComputed, - stepToAlphaConvertCallArg + stepToAlphaConvertCallArg, + stepToBinaryProcessed, + stepToBinaryActive } from 'scripts/lib/steps' import { ContainerWithState, @@ -33,6 +40,7 @@ import { ExecutableCallRegular, StepChild, ExecutableConditionalStatesDistributed, + ExecutableBinaryStatesDistributed, ExecutableCall, ExecutableCallShorthand } from 'src/types/ExpressionTypes' @@ -50,7 +58,7 @@ const stepExpressionContainerReset = ( const newContainer = prioritizeExpressionContainer( resetExpressionContainer(e) ) - const nextCallExpressionAndParent = findNextCallExpressionAndParent( + const nextCallExpressionAndParent = findNextExecutableAndParent( newContainer.expression ) if (nextCallExpressionAndParent.expression) { @@ -100,6 +108,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 +308,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,7 +329,9 @@ const runStep = ( ? isExecutableCallRegular(expression) ? stepRegular(expression, stepOptions, e.matchExists) : stepShorthand(expression) - : stepConditional(expression) + : isConditional(expression) + ? stepConditional(expression) + : stepBinary(expression) if (!callParent && !callParentKey && !funcParent && !conditionalParent) { const newContainer = { @@ -339,6 +375,13 @@ const runStep = ( conditionalParent, nextExpression ) + } else if (binaryParent && binaryParentKey) { + newExpression = replaceBinaryParentKey( + e.expression, + binaryParentKey, + binaryParent, + nextExpression + ) } else { throw new Error() } 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/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/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/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/ExpressionTypes.ts b/src/types/ExpressionTypes.ts index 3e7b82438..905e0ab4a 100644 --- a/src/types/ExpressionTypes.ts +++ b/src/types/ExpressionTypes.ts @@ -204,6 +204,8 @@ export type ConditionalStates = | 'trueCaseActive' | 'falseCaseActive' +export type BinaryStates = 'default' | 'active' + // Call state to possible variable state export type CallStateToVariableState = C extends 'default' ? 'default' @@ -294,6 +296,15 @@ export interface ConditionalExpression { readonly state: ConditionalStates } +export interface BinaryExpression { + readonly type: 'binary' + readonly binaryType: 'multiply' + readonly first: Expression + readonly second: Expression + readonly priority: number + readonly state: BinaryStates +} + export interface RepeatExpression { readonly type: 'repeat' readonly child: Expression @@ -307,6 +318,7 @@ export type Expression = | FunctionExpression | ConditionalExpression | RepeatExpression + | BinaryExpression type FunctionWithArgBody< A extends VariableExpression, @@ -327,6 +339,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 +389,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 +411,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 +436,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 +483,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 +> From 1a896bbff9a966083f0b8bd2dbe778efc8f5d03f Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 14:18:32 -0700 Subject: [PATCH 02/36] Bugfix on buildFromParams --- scripts/lib/buildExpressionFromParams.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/buildExpressionFromParams.ts b/scripts/lib/buildExpressionFromParams.ts index cc5a0147d..848762ccb 100644 --- a/scripts/lib/buildExpressionFromParams.ts +++ b/scripts/lib/buildExpressionFromParams.ts @@ -210,7 +210,7 @@ export default function buildExpressionFromParams( type: 'binary', binaryType: expressionParams.binaryType, first: buildExpressionFromParams(expressionParams.first), - second: buildExpressionFromParams(expressionParams.first), + second: buildExpressionFromParams(expressionParams.second), state: 'default', priority: 0 } From 712117a32144945f55e514cd26a2a7abc4698b3c Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 14:53:43 -0700 Subject: [PATCH 03/36] Fix steps --- scripts/lib/steps/stepToActive.ts | 11 +++++++ .../lib/steps/stepToAlphaConvertCallArg.ts | 17 +++++++++- .../lib/steps/stepToBetaReducePreviewAfter.ts | 32 ++++++++++++++++++- .../steps/stepToBetaReducePreviewBefore.ts | 25 ++++++++++++++- .../steps/stepToBetaReducePreviewCrossed.ts | 16 +++++++++- scripts/lib/steps/stepToNeedsAlphaConvert.ts | 17 +++++++++- scripts/lib/steps/stepToShowCallArg.ts | 14 ++++++++ scripts/lib/steps/stepToShowFuncArg.ts | 16 +++++++++- scripts/lib/steps/stepToShowFuncBound.ts | 17 +++++++++- scripts/lib/steps/stepToShowFuncUnbound.ts | 17 +++++++++- scripts/lib/toDefault.ts | 23 +++++++++++-- 11 files changed, 195 insertions(+), 10 deletions(-) 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/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() } From d06733bf3edabefc811a756933906714159797e5 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 14:59:34 -0700 Subject: [PATCH 04/36] Implement basic binaryExpressionBox --- src/components/BinaryExpressionBox.tsx | 41 ++++++++++++++++++++++++++ src/components/ExpressionBox.tsx | 6 +++- 2 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 src/components/BinaryExpressionBox.tsx diff --git a/src/components/BinaryExpressionBox.tsx b/src/components/BinaryExpressionBox.tsx new file mode 100644 index 000000000..0cbd31c7b --- /dev/null +++ b/src/components/BinaryExpressionBox.tsx @@ -0,0 +1,41 @@ +/** @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' + +interface BinaryExpressionBoxProps { + expression: BinaryExpression +} + +const BinaryExpressionBox = ({ expression }: BinaryExpressionBoxProps) => { + const { activePriority } = useContext(ExpressionPriorityContext) + return ( + + + + + + + + + + + ) +} + +export default BinaryExpressionBox 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 } From 2263a0d9ce29943987aeb8b5f9fc1c2ec04c6d3a Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 15:02:59 -0700 Subject: [PATCH 05/36] Fix prioritizeExpression --- scripts/lib/prioritizeExpression.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/lib/prioritizeExpression.ts b/scripts/lib/prioritizeExpression.ts index 21a199223..948b7deb2 100644 --- a/scripts/lib/prioritizeExpression.ts +++ b/scripts/lib/prioritizeExpression.ts @@ -108,8 +108,8 @@ function prioritizeBinaryExpressionHelper({ expression: E maxDescendantPriority: number } { - let newArg: Expression - let newFunc: Expression + let newSecond: Expression + let newFirst: Expression let currentPriority = priority let maxDescendantPriority = priority @@ -136,11 +136,11 @@ function prioritizeBinaryExpressionHelper({ }) } - newFunc = funcResult.expression + newFirst = funcResult.expression currentPriority = funcResult.maxDescendantPriority + 1 maxDescendantPriority = currentPriority } else { - newFunc = prioritizeExpressionHelper(expression.first) + newFirst = prioritizeExpressionHelper(expression.first) } if ( @@ -166,17 +166,17 @@ function prioritizeBinaryExpressionHelper({ }) } - newArg = argResult.expression + newSecond = argResult.expression maxDescendantPriority = argResult.maxDescendantPriority } else { - newArg = prioritizeExpressionHelper(expression.second) + newSecond = prioritizeExpressionHelper(expression.second) } return { expression: { ...expression, - func: newFunc, - arg: newArg, + first: newFirst, + second: newSecond, priority: currentPriority }, maxDescendantPriority From ea1be5762f93dd0d055f49c35a0be9d5ad43962f Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 15:19:00 -0700 Subject: [PATCH 06/36] Fix more logic --- scripts/lib/findNextExecutableAndParent.ts | 6 +++++- scripts/lib/stepExpressionContainer.ts | 8 +++++++- src/types/ExpressionContainerTypes.ts | 8 ++++++-- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/scripts/lib/findNextExecutableAndParent.ts b/scripts/lib/findNextExecutableAndParent.ts index 3a78cda86..ee5359d62 100644 --- a/scripts/lib/findNextExecutableAndParent.ts +++ b/scripts/lib/findNextExecutableAndParent.ts @@ -177,7 +177,11 @@ export default function findNextExecutableAndParent( 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/stepExpressionContainer.ts b/scripts/lib/stepExpressionContainer.ts index d0bb521b3..82ac35455 100644 --- a/scripts/lib/stepExpressionContainer.ts +++ b/scripts/lib/stepExpressionContainer.ts @@ -333,7 +333,13 @@ const runStep = ( ? stepConditional(expression) : stepBinary(expression) - if (!callParent && !callParentKey && !funcParent && !conditionalParent) { + if ( + !callParent && + !callParentKey && + !funcParent && + !conditionalParent && + !binaryParent + ) { const newContainer = { expression: previouslyChangedExpressionState === 'betaReducePreviewAfter' diff --git a/src/types/ExpressionContainerTypes.ts b/src/types/ExpressionContainerTypes.ts index 9c36afed1..48b8651d6 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,7 +15,10 @@ 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 } From 08feb8ecd49fe91785eb9b6f2c91b3c14266304d Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 15:28:10 -0700 Subject: [PATCH 07/36] YC Demo --- scripts/lib/initialExpressionContainers.ts | 40 + scripts/lib/runnerConfigs.ts | 19 + src/components/Runners/Lgiv.tsx | 12 + src/components/Runners/Xbki.tsx | 12 + src/components/Runners/index.ts | 2 + src/contents/demo.jp.tsx | 9 + src/lib/runners/lgiv.json | 232 + src/lib/runners/xbki.json | 73701 +++++++++++++++++++ 8 files changed, 74027 insertions(+) create mode 100644 src/components/Runners/Lgiv.tsx create mode 100644 src/components/Runners/Xbki.tsx create mode 100644 src/lib/runners/lgiv.json create mode 100644 src/lib/runners/xbki.json diff --git a/scripts/lib/initialExpressionContainers.ts b/scripts/lib/initialExpressionContainers.ts index f8c809b28..328453781 100644 --- a/scripts/lib/initialExpressionContainers.ts +++ b/scripts/lib/initialExpressionContainers.ts @@ -2281,3 +2281,43 @@ export const xfso = initializeExpressionContainer([ shorthandNumberAfterConvert: 'binaryFirst' } ]) + +export const krin = initializeExpressionContainer({ + binaryType: 'multiply', + first: { + binaryType: 'multiply', + first: { + shorthandNumber: 2 + }, + second: { + shorthandNumber: 3 + } + }, + second: { + shorthandNumber: 4 + } +}) + +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 + } +]) diff --git a/scripts/lib/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index 9b28f614d..4793843d6 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -2825,3 +2825,22 @@ export const spki: ExpressionRunnerShorthandConfig = { showPriorities: true, variableSize: 'sm' } + +export const lgiv: ExpressionRunnerShorthandConfig = { + runner: 'playButtonOnly', + skipToTheEnd: false, + skipActive: true, + initialExpressionContainer: initialExpressionContainers.krin, + showPriorities: true +} + +export const xbki: ExpressionRunnerShorthandConfig = { + runner: 'playButtonOnly', + skipToTheEnd: false, + skipActive: true, + initialExpressionContainer: initialExpressionContainers.jvmi, + showPriorities: true, + variableSize: 'xxxs', + containerSize: 'xs', + speed: 4, +} diff --git a/src/components/Runners/Lgiv.tsx b/src/components/Runners/Lgiv.tsx new file mode 100644 index 000000000..f82236970 --- /dev/null +++ b/src/components/Runners/Lgiv.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/lgiv.json' + +const Lgiv = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Lgiv 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/index.ts b/src/components/Runners/index.ts index f3e9eb694..f8478247b 100644 --- a/src/components/Runners/index.ts +++ b/src/components/Runners/index.ts @@ -370,3 +370,5 @@ 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 Lgiv } from 'src/components/Runners/Lgiv' +export { default as Xbki } from 'src/components/Runners/Xbki' diff --git a/src/contents/demo.jp.tsx b/src/contents/demo.jp.tsx index 28f143f7a..7b7bf3c1b 100644 --- a/src/contents/demo.jp.tsx +++ b/src/contents/demo.jp.tsx @@ -311,6 +311,15 @@ const DemoCardList = () => ( ) + }, + { + title: <>, + content: ( + <> + + + + ) } ]} /> diff --git a/src/lib/runners/lgiv.json b/src/lib/runners/lgiv.json new file mode 100644 index 000000000..cf542f4e6 --- /dev/null +++ b/src/lib/runners/lgiv.json @@ -0,0 +1,232 @@ +{ + "expressionContainers": [ + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3 + }, + "state": "default", + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 2 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3 + }, + "state": "active", + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 1 + } + }, + { + "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 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "active", + "priority": 1 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped" + }, + { + "containerState": "done", + "previouslyChangedExpressionState": "default", + "expression": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [], + "funcPriorityAgg": [], + "shorthandNumber": 24 + } + } + ], + "speed": 1, + "hideControls": false, + "explanationsVisibility": "hiddenInitialPausedOnly", + "hidePriorities": false, + "variableSize": "lg", + "containerSize": "xxs", + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": false, + "hideFuncUnboundBadgeOnExplanation": true, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false, + "skipActive": true +} diff --git a/src/lib/runners/xbki.json b/src/lib/runners/xbki.json new file mode 100644 index 000000000..af4de60a0 --- /dev/null +++ b/src/lib/runners/xbki.json @@ -0,0 +1,73701 @@ +{ + "expressionContainers": [ + { + "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 + }, + "func": { + "arg": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "initialHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "func": { + "arg": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "needsAlphaConvert", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "needsAlphaConvert", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "alphaConvertDone", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "alphaConvertDone", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + } + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped" + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "f", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "matchExists": true, + "activePriority": 1, + "containerState": "stepped" + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped" + }, + { + "expression": { + "arg": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "arg": { + "name": "f", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped" + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 5 + }, + "priority": 1 + } + }, + { + "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 5 + }, + "priority": 1 + }, + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped" + }, + { + "expression": { + "type": "conditional", + "state": "falseCaseActive", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 5 + }, + "priority": 1 + }, + "previouslyChangedExpressionState": "falseCaseActive", + "activePriority": 1, + "containerState": "stepped" + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 4 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 4 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "needsAlphaConvert", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "needsAlphaConvert", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 4 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "alphaConvertDone", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "alphaConvertDone", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 4 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 4 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 4 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 4 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 5 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 5 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 5 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 5 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 5 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 3 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 3, + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 3 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 3, + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 3 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 3, + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 3, + 8, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "priority": 3 + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 3 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 3, + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3, + 8, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "priority": 3 + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 3 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 10 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 10 + }, + "activePriority": 2 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "state": "default", + "priority": 7 + }, + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 9 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "state": "default", + "priority": 7 + }, + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 9 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 8 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "conditionActive", + "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 8 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "falseCaseActive", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "falseCaseActive", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 8 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 7 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 7 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "needsAlphaConvert", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "needsAlphaConvert", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 7 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "alphaConvertDone", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "alphaConvertDone", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 7 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 7 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 7 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 7 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 8 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 8 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 8 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 8 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 8 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 4, + 10, + 6, + 7, + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "priority": 4 + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "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": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4, + 10, + 6, + 7, + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "priority": 4 + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "priority": 4 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14, + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "state": "default", + "priority": 13 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 15 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "priority": 4 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14, + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "state": "default", + "priority": 13 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 15 + }, + "activePriority": 3 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "state": "default", + "priority": 9 + }, + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "state": "default", + "priority": 12 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 14 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "state": "default", + "priority": 9 + }, + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "state": "default", + "priority": 12 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 14 + }, + "activePriority": 2 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "priority": 2 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "state": "default", + "priority": 11 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 13 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "priority": 2 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "state": "default", + "priority": 11 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 13 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "state": "default", + "priority": 7 + }, + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 12 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "conditionActive", + "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "state": "default", + "priority": 7 + }, + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 12 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "falseCaseActive", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "falseCaseActive", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "state": "default", + "priority": 7 + }, + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 12 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "state": "default", + "priority": 9 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 11 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "state": "default", + "priority": 9 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 11 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "needsAlphaConvert", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "conflict", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "needsAlphaConvert", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "state": "default", + "priority": 9 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 11 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "alphaConvertDone", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "conflictResolvedHighlighted", + "topLeftBadgeType": "conflictResolved", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "alphaConvertDone", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "state": "default", + "priority": 9 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 11 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "state": "default", + "priority": 9 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 11 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "state": "default", + "priority": 9 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 11 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "state": "default", + "priority": 9 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 11 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "state": "default", + "priority": 7 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 12 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "state": "default", + "priority": 7 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 12 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "state": "default", + "priority": 7 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 12 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "state": "default", + "priority": 7 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 12 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "state": "default", + "priority": 7 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 12 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 10 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", + "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": "callArg", + "type": "variable", + "argPriorityAgg": [ + 10, + 8, + 5, + 1, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "showFuncUnbound", + "type": "call", + "priority": 1 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 10 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", + "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": "callArg", + "type": "variable", + "argPriorityAgg": [ + 10, + 8, + 5, + 1, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "highlighted", + "topLeftBadgeType": "unmatch", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "d", + "highlightType": "highlighted", + "topLeftBadgeType": "match", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "betaReducePreviewBefore", + "type": "call", + "priority": 1 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 10 + }, + "matchExists": true, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 10, + 8, + 5, + 1, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "betaReduceCallArgHighlighted", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 5, + 12, + 7, + 8, + 9, + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 7 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcUnbound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [ + 13, + 14, + 15 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 15 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "highlighted", + "topLeftBadgeType": "betaReduced", + "bottomRightBadgeType": "funcBound", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "state": "default", + "priority": 12 + }, + "priority": 5 + }, + "type": "function" + }, + "state": "betaReducePreviewAfter", + "type": "call", + "priority": 1 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 10 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [ + 10, + 8, + 5, + 1, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "callArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "removed", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "funcArg", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "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": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5, + 12, + 7, + 8, + 9, + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 7 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "second": { + "arg": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 14, + 15 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 15 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "state": "default", + "priority": 12 + }, + "priority": 5 + }, + "type": "function" + }, + "state": "betaReducePreviewCrossed", + "type": "call", + "priority": 1 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "priority": 5 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 10 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 7 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 15 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "state": "default", + "priority": 12 + }, + "priority": 5 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 17, + 18 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 18 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17, + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 17 + }, + "state": "default", + "priority": 16 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 20 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 20, + 19 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 20 + }, + "state": "default", + "priority": 19 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 21 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 21 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6, + 7 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 15 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "state": "default", + "priority": 12 + }, + "priority": 5 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 17, + 18 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 18 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17, + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 17 + }, + "state": "default", + "priority": 16 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 20 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 20, + 19 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 20 + }, + "state": "default", + "priority": 19 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 21 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 21 + }, + "activePriority": 4 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "state": "default", + "priority": 11 + }, + "priority": 4 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 16, + 17 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 17 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16, + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 16 + }, + "state": "default", + "priority": 15 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 19 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 19, + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 19 + }, + "state": "default", + "priority": 18 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 20 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 20 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "state": "default", + "priority": 11 + }, + "priority": 4 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 16, + 17 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 17 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16, + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 16 + }, + "state": "default", + "priority": 15 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 19 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 19, + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 19 + }, + "state": "default", + "priority": 18 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 20 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 20 + }, + "activePriority": 3 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "priority": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 15, + 16 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 16 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15, + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 15 + }, + "state": "default", + "priority": 14 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 18 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18, + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 18 + }, + "state": "default", + "priority": 17 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 19 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 19 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11, + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "state": "default", + "priority": 10 + }, + "priority": 3 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 15, + 16 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 16 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15, + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 15 + }, + "state": "default", + "priority": 14 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 18 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18, + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 18 + }, + "state": "default", + "priority": 17 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 19 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 19 + }, + "activePriority": 2 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "state": "default", + "priority": 9 + }, + "priority": 2 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14, + 15 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 15 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14, + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "state": "default", + "priority": 13 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 17 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17, + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 17 + }, + "state": "default", + "priority": 16 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 18 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10, + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "state": "default", + "priority": 9 + }, + "priority": 2 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 14, + 15 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 15 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14, + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "state": "default", + "priority": 13 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 17 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17, + 16 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 17 + }, + "state": "default", + "priority": 16 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 18 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 18 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "priority": 1 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "state": "default", + "priority": 12 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 16 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16, + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 16 + }, + "state": "default", + "priority": 15 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 17 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "conditionActive", + "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "priority": 1 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "state": "default", + "priority": 12 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 16 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16, + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 16 + }, + "state": "default", + "priority": 15 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 17 + }, + "activePriority": 1 + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "trueCaseActive", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "binary", + "binaryType": "multiply", + "first": { + "type": "conditional", + "state": "trueCaseActive", + "checkType": "isZero", + "condition": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 0 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "priority": 1 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 13, + 14 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 14 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "state": "default", + "priority": 12 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 16 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 16, + 15 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 16 + }, + "state": "default", + "priority": 15 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 17 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 17 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + }, + "activePriority": 3 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "state": "default", + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 5 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 2 + }, + "state": "default", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "state": "default", + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 5 + }, + "activePriority": 2 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2 + }, + "state": "default", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 4 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 2 + }, + "state": "active", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 4 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 3 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 2 + }, + "state": "default", + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 3 + }, + "activePriority": 2 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3 + }, + "state": "default", + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 2 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 3 + }, + "state": "active", + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 1 + } + }, + { + "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 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "active", + "priority": 1 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped" + }, + { + "containerState": "done", + "previouslyChangedExpressionState": "default", + "expression": { + "type": "variable", + "name": "shorthandNumber", + "bound": true, + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "emphasizePriority": false, + "argPriorityAgg": [], + "funcPriorityAgg": [], + "shorthandNumber": 24 + } + } + ], + "speed": 4, + "hideControls": false, + "explanationsVisibility": "hiddenInitialPausedOnly", + "hidePriorities": false, + "variableSize": "xxxs", + "containerSize": "xs", + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": false, + "hideFuncUnboundBadgeOnExplanation": true, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false, + "skipActive": true +} From 4c3efdf54e0782e4676473263f233248b087fb54 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 15:54:20 -0700 Subject: [PATCH 08/36] Fix display --- src/components/BinaryContext.tsx | 11 ++++++ src/components/BinaryExpressionBox.tsx | 47 ++++++++++++++---------- src/components/BorderWrapper.tsx | 15 +++++++- src/components/VariableExpressionBox.tsx | 8 +++- 4 files changed, 58 insertions(+), 23 deletions(-) create mode 100644 src/components/BinaryContext.tsx 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 index 0cbd31c7b..2d231bdb4 100644 --- a/src/components/BinaryExpressionBox.tsx +++ b/src/components/BinaryExpressionBox.tsx @@ -6,6 +6,7 @@ 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' interface BinaryExpressionBoxProps { expression: BinaryExpression @@ -13,28 +14,36 @@ interface BinaryExpressionBoxProps { const BinaryExpressionBox = ({ expression }: BinaryExpressionBoxProps) => { const { activePriority } = useContext(ExpressionPriorityContext) + const { inBinaryActive } = useContext(BinaryContext) return ( - - - - - - - - - - + + + + + + + + + + ) } 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/VariableExpressionBox.tsx b/src/components/VariableExpressionBox.tsx index 07f84285f..a794b2d9d 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' @@ -351,6 +352,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 +361,8 @@ const VariableExpressionBox = ({ expression }: VariableExpressionBoxProps) => { position="topleft" emphasize={ expression.emphasizePriority || - !!(conditionalState && conditionalState !== 'default') + !!(conditionalState && conditionalState !== 'default') || + !!(binaryState && binaryState !== 'default') } /> )} @@ -379,7 +382,8 @@ const VariableExpressionBox = ({ expression }: VariableExpressionBoxProps) => { position="bottomleft" emphasize={ expression.emphasizePriority || - !!(conditionalState && conditionalState !== 'default') + !!(conditionalState && conditionalState !== 'default') || + !!(binaryState && binaryState !== 'default') } /> )} From eb58f68e7240ba9a6ba51e48d4ddff026e24b40c Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 17:19:06 -0700 Subject: [PATCH 09/36] Fix the visual for binary expression --- src/components/BinaryExpressionBox.tsx | 30 +++++++++++++++++++ src/components/CustomEmoji/MultiplySvg.tsx | 17 +++++++++++ .../CustomEmoji/MultiplyWhiteSvg.tsx | 17 +++++++++++ src/components/CustomEmoji/OneTwentySvg.tsx | 28 +++++++++++++++++ src/components/CustomEmoji/index.tsx | 8 ++++- src/components/EmojiNumber.tsx | 2 ++ src/components/InlinePrioritiesLabel.tsx | 6 ++-- src/components/MultiplyIcon.tsx | 30 +++++++++++++++++++ src/lib/theme/zIndices.ts | 1 + 9 files changed, 134 insertions(+), 5 deletions(-) create mode 100644 src/components/CustomEmoji/MultiplySvg.tsx create mode 100644 src/components/CustomEmoji/MultiplyWhiteSvg.tsx create mode 100644 src/components/CustomEmoji/OneTwentySvg.tsx create mode 100644 src/components/MultiplyIcon.tsx diff --git a/src/components/BinaryExpressionBox.tsx b/src/components/BinaryExpressionBox.tsx index 2d231bdb4..3bbecc857 100644 --- a/src/components/BinaryExpressionBox.tsx +++ b/src/components/BinaryExpressionBox.tsx @@ -7,14 +7,29 @@ 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 { ExpressionRunnerContextProps } from 'src/types/ExpressionRunnerTypes' +import { fontSizes, zIndices } from 'src/lib/theme' interface BinaryExpressionBoxProps { expression: BinaryExpression } +const multiplyIconSize = (size: ExpressionRunnerContextProps['variableSize']) => + ({ + lg: fontSizes(1.2), + md: fontSizes(1), + sm: fontSizes(0.85), + xs: fontSizes(0.8), + xxs: fontSizes(0.75), + xxxs: fontSizes(0.7) + }[size]) + const BinaryExpressionBox = ({ expression }: BinaryExpressionBoxProps) => { const { activePriority } = useContext(ExpressionPriorityContext) const { inBinaryActive } = useContext(BinaryContext) + const { variableSize } = useContext(ExpressionRunnerContext) 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/OneTwentySvg.tsx b/src/components/CustomEmoji/OneTwentySvg.tsx new file mode 100644 index 000000000..39438aa62 --- /dev/null +++ b/src/components/CustomEmoji/OneTwentySvg.tsx @@ -0,0 +1,28 @@ +import * as React from 'react' + +const OneTwentySvg = (props: React.SVGProps) => ( + + + + + + + + + + +) + +export default OneTwentySvg diff --git a/src/components/CustomEmoji/index.tsx b/src/components/CustomEmoji/index.tsx index 15d71f473..4bd1b5d6a 100644 --- a/src/components/CustomEmoji/index.tsx +++ b/src/components/CustomEmoji/index.tsx @@ -11,6 +11,7 @@ import DoubleArrowSvg from 'src/components/CustomEmoji/DoubleArrowSvg' import HorizontalDotDotDotRedSvg from 'src/components/CustomEmoji/HorizontalDotDotDotRedSvg' import HorizontalDotDotDotSvg from 'src/components/CustomEmoji/HorizontalDotDotDotSvg' import IndexSvg from 'src/components/CustomEmoji/IndexSvg' +import OneTwentySvg from 'src/components/CustomEmoji/OneTwentySvg' import LambdaSvg from 'src/components/CustomEmoji/LambdaSvg' import LetterCSvg from 'src/components/CustomEmoji/LetterCSvg' import LetterDSvg from 'src/components/CustomEmoji/LetterDSvg' @@ -24,6 +25,8 @@ 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 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, + oneTwenty: OneTwentySvg, + multiply: MultiplySvg, + multiplyWhite: MultiplyWhiteSvg } const CustomEmoji = ({ diff --git a/src/components/EmojiNumber.tsx b/src/components/EmojiNumber.tsx index 05cea9fc3..cdf9ed30d 100644 --- a/src/components/EmojiNumber.tsx +++ b/src/components/EmojiNumber.tsx @@ -18,6 +18,8 @@ const EmojiNumber = ({ number, size }: EmojiNumberProps) => { return } else if (number === 24) { return + } else if (number === 120) { + return } else { return ( ( ( + + + +) + +export default MultiplyIcon 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, From a0547b3ebd82b49948622590ee1334da44d701a6 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 17:28:24 -0700 Subject: [PATCH 10/36] showDefaultAndActiveOnly --- scripts/lib/buildExpressionContainers.ts | 12 +- ...uildExpressionRunnerConfigFromShorthand.ts | 9 +- .../lib/expressionRunnerShorthandConfig.ts | 3 + scripts/lib/runnerConfigs.ts | 2 +- scripts/precomputeExpressionContainers.ts | 6 +- src/lib/runners/xbki.json | 70066 ++++------------ 6 files changed, 16172 insertions(+), 53926 deletions(-) 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/buildExpressionRunnerConfigFromShorthand.ts b/scripts/lib/buildExpressionRunnerConfigFromShorthand.ts index 301b70470..534f7ce72 100644 --- a/scripts/lib/buildExpressionRunnerConfigFromShorthand.ts +++ b/scripts/lib/buildExpressionRunnerConfigFromShorthand.ts @@ -35,6 +35,7 @@ export interface ExpressionRunnerConfig { showAllShowSteps?: boolean skipAlphaConvert?: boolean skipActive?: boolean + showDefaultAndActiveOnly?: boolean skipToTheEnd: boolean hideFuncUnboundBadgeOnExplanation: boolean highlightOverridesCallArgAndFuncUnboundOnly: boolean @@ -119,6 +120,7 @@ const buildExpressionRunnerConfigFromShorthand = ( isDone, skipAlphaConvert, skipActive, + showDefaultAndActiveOnly, nextIterations, showPriorities, showAllShowSteps, @@ -147,6 +149,7 @@ const buildExpressionRunnerConfigFromShorthand = ( containerSize, skipAlphaConvert, skipActive, + showDefaultAndActiveOnly, bottomRightBadgeOverrides, highlightOverrides, highlightFunctions, @@ -172,6 +175,7 @@ const buildExpressionRunnerConfigFromShorthand = ( speed, skipAlphaConvert, skipActive, + showDefaultAndActiveOnly, variableSize, containerSize, highlightOverrides, @@ -193,6 +197,7 @@ const buildExpressionRunnerConfigFromShorthand = ( containerSize, skipAlphaConvert, skipActive, + showDefaultAndActiveOnly, explanationsVisibility: explanationsVisibility || 'hiddenInitialPausedOnly', lastAllowedExpressionState, @@ -214,7 +219,8 @@ const buildExpressionRunnerConfigFromShorthand = ( variableSize, containerSize, nextIterations, - skipActive + skipActive, + showDefaultAndActiveOnly } = mergeWithDefault< typeof config, typeof expressionRunnerSingleStepConfigDefault @@ -232,6 +238,7 @@ const buildExpressionRunnerConfigFromShorthand = ( lastAllowedExpressionStateAfterIterations: nextIterations, showAllShowSteps, skipActive, + showDefaultAndActiveOnly, initializeInstructions: buildInitializeInstructions({ nextIterations, initialState diff --git a/scripts/lib/expressionRunnerShorthandConfig.ts b/scripts/lib/expressionRunnerShorthandConfig.ts index a6cd9d4e3..6b55b5e3a 100644 --- a/scripts/lib/expressionRunnerShorthandConfig.ts +++ b/scripts/lib/expressionRunnerShorthandConfig.ts @@ -18,6 +18,7 @@ interface ExpressionRunnerSimpleConfig { isDone?: boolean skipAlphaConvert?: boolean skipActive?: boolean + showDefaultAndActiveOnly?: boolean nextIterations?: number showPriorities?: boolean showAllShowSteps?: ExpressionRunnerProps['showAllShowSteps'] @@ -69,6 +70,7 @@ interface ExpressionRunnerPlayButtonOnlyConfig { speed?: number skipAlphaConvert?: boolean skipActive?: boolean + showDefaultAndActiveOnly?: boolean variableSize?: ExpressionRunnerProps['variableSize'] containerSize?: ExpressionRunnerProps['containerSize'] highlightOverrides?: ExpressionRunnerProps['highlightOverrides'] @@ -96,6 +98,7 @@ interface ExpressionRunnerSingleStepConfig { hideFuncUnboundBadgeOnExplanation?: boolean showPriorities?: boolean skipActive?: boolean + showDefaultAndActiveOnly?: boolean nextIterations?: number variableSize?: ExpressionRunnerProps['variableSize'] containerSize?: ExpressionRunnerProps['containerSize'] diff --git a/scripts/lib/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index 4793843d6..f6ced65f8 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -2837,10 +2837,10 @@ export const lgiv: ExpressionRunnerShorthandConfig = { export const xbki: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', skipToTheEnd: false, - skipActive: true, initialExpressionContainer: initialExpressionContainers.jvmi, showPriorities: true, variableSize: 'xxxs', containerSize: 'xs', speed: 4, + showDefaultAndActiveOnly: true } diff --git a/scripts/precomputeExpressionContainers.ts b/scripts/precomputeExpressionContainers.ts index 910656101..dc56ac3e3 100644 --- a/scripts/precomputeExpressionContainers.ts +++ b/scripts/precomputeExpressionContainers.ts @@ -27,7 +27,8 @@ const precomputeFile = (key: string) => { highlightFunctions, convert, crossed, - skipActive + skipActive, + showDefaultAndActiveOnly } = config const expressionContainersContents = `${JSON.stringify( @@ -51,7 +52,8 @@ const precomputeFile = (key: string) => { showAllShowSteps, convert, crossed, - skipActive + skipActive, + showDefaultAndActiveOnly }, null, 2 diff --git a/src/lib/runners/xbki.json b/src/lib/runners/xbki.json index af4de60a0..6a4235f6d 100644 --- a/src/lib/runners/xbki.json +++ b/src/lib/runners/xbki.json @@ -338,7 +338,7 @@ }, { "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", + "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "shorthandNumber", @@ -360,7 +360,7 @@ "name": "a", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -374,7 +374,7 @@ "name": "f", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -390,7 +390,7 @@ "name": "f", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -403,7 +403,7 @@ "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -421,7 +421,7 @@ "name": "shorthandNumber", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -440,7 +440,7 @@ "name": "f", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -456,7 +456,7 @@ "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -474,7 +474,7 @@ "name": "a", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -491,7 +491,7 @@ "name": "f", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -514,7 +514,7 @@ "name": "a", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -530,7 +530,7 @@ "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -545,7 +545,7 @@ "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -559,7 +559,7 @@ "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -576,7 +576,7 @@ "name": "a", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -596,7 +596,7 @@ "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -611,7 +611,7 @@ "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -625,7 +625,7 @@ "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -642,7 +642,7 @@ "name": "a", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -663,7 +663,7 @@ }, "type": "function" }, - "state": "showFuncUnbound", + "state": "active", "type": "call", "priority": 1 }, @@ -674,12 +674,12 @@ "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -694,96 +694,90 @@ "func": { "arg": { "arg": { - "name": "a", - "highlightType": "active", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": false }, "body": { "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", + "func": { + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ 2 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": true }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { "name": "f", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 2, - 5, - 3, - 4 + 1 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -791,13 +785,13 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 1 ], "emphasizePriority": false, "bound": true, @@ -805,135 +799,160 @@ }, "state": "default", "type": "call", - "priority": 4 + "priority": 1 }, - "func": { - "name": "a", - "highlightType": "active", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 }, - "state": "default", - "priority": 5 + "type": "function" }, - "priority": 2 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, "type": "function" }, "func": { "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ 1, 2 ], - "emphasizePriority": true, + "emphasizePriority": false, "bound": false }, "body": { "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": true }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 1 + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true }, - "type": "function" + "state": "default", + "type": "call", + "priority": 2 }, "func": { "arg": { - "name": "b", - "highlightType": "active", + "name": "a", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -944,53 +963,141 @@ }, "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "state": "default", - "type": "call", "priority": 2 }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, "type": "function" }, @@ -1000,24 +1107,22 @@ }, "type": "function" }, - "state": "betaReducePreviewBefore", + "state": "default", "type": "call", "priority": 1 }, "state": "default", "type": "call", "priority": 2 - }, - "matchExists": true, - "activePriority": 1 + } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", + "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "shorthandNumber", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -1032,10 +1137,10 @@ "func": { "arg": { "arg": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", + "name": "b", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -1046,82 +1151,76 @@ }, "body": { "arg": { - "name": "f", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", + "func": { + "name": "b", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ 2 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": true }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { "name": "f", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 2, - 5, - 3, - 4 + 1 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -1129,13 +1228,13 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 1 ], "emphasizePriority": false, "bound": true, @@ -1143,149 +1242,38 @@ }, "state": "default", "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "priority": 1 }, - "func": { - "name": "b", + "trueCase": { + "name": "shorthandNumber", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ 2 ], "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -1293,13 +1281,13 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 4 ], "emphasizePriority": false, "bound": true, @@ -1307,112 +1295,107 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 + "bound": true }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 3 }, - "type": "function" + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, "type": "function" }, - "func": { + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { "arg": { "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -1423,76 +1406,82 @@ }, "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "b", + "trueCase": { + "name": "shorthandNumber", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ 2 ], "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -1500,13 +1489,13 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 4 ], "emphasizePriority": false, "bound": true, @@ -1514,103 +1503,44 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 + "bound": true }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 3 }, - "type": "function" + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, "type": "function" }, @@ -1620,7 +1550,7 @@ }, "type": "function" }, - "state": "betaReducePreviewAfter", + "state": "active", "type": "call", "priority": 1 }, @@ -1631,17 +1561,17 @@ "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", - "highlightType": "initialHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 2 + 3 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -1651,655 +1581,489 @@ "func": { "arg": { "arg": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { "arg": { - "name": "f", - "highlightType": "removed", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], + "argPriorityAgg": [ + 1, + 2 + ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "arg": { "arg": { - "name": "f", - "highlightType": "removed", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "shorthandFunc", - "highlightType": "removed", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "priority": 2 }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "removed", + "func": { + "arg": { + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 1 ], "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "func": { - "arg": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "bound": false }, - "func": { + "body": { "arg": { - "name": "a", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", + "func": { + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "a", - "highlightType": "active", + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "f", - "highlightType": "active", + "func": { + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "func": { + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "a", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", + "func": { + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "a", - "highlightType": "active", + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "f", - "highlightType": "active", + "func": { + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 2 }, - "state": "betaReducePreviewCrossed", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { + "func": { "arg": { - "name": "b", + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 1 + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 ], - "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "b", + "trueCase": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -2309,43 +2073,14 @@ 2 ], "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { "name": "f", "highlightType": "default", @@ -2353,7 +2088,10 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -2367,7 +2105,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 4 ], "emphasizePriority": false, "bound": true, @@ -2375,311 +2113,44 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": true }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 3 }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { + "second": { "name": "f", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 + "bound": true }, - "type": "function" + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, "type": "function" }, @@ -2689,12 +2160,12 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", + "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "shorthandNumber", @@ -2703,7 +2174,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 2 + 3 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -2713,534 +2184,517 @@ "func": { "arg": { "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false }, - "func": { + "body": { "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { - "name": "f", + "name": "c", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], "emphasizePriority": false, "bound": false }, "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", + "trueCase": { + "name": "shorthandNumber", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "shorthandFunc", + "name": "c", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 4 + "priority": 3 }, - "func": { - "name": "a", + "second": { + "name": "d", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true }, "state": "default", - "type": "call", - "priority": 3 + "priority": 5 }, - "second": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 + "priority": 2 }, - "priority": 2 + "type": "function" }, "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false + "type": "function" }, - "body": { + "func": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { - "name": "f", + "name": "c", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], "emphasizePriority": false, "bound": false }, "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", + "trueCase": { + "name": "shorthandNumber", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "shorthandFunc", + "name": "c", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 4 + "priority": 3 }, - "func": { - "name": "a", + "second": { + "name": "d", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true }, "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "priority": 5 }, - "state": "default", - "priority": 5 + "priority": 2 }, - "priority": 2 + "type": "function" }, "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 2 }, - "state": "showFuncUnbound", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { + "func": { "arg": { - "name": "b", + "name": "a", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 1 + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 ], - "funcPriorityAgg": [], "emphasizePriority": true, "bound": false }, "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "b", + "trueCase": { + "name": "shorthandNumber", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ 2 ], "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -3250,11 +2704,11 @@ "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 4 ], "emphasizePriority": false, "bound": true, @@ -3262,327 +2716,60 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "a", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": true }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 3 }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { + "second": { "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "funcUnbound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 + "bound": true }, - "type": "function" + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, "type": "function" }, - "state": "needsAlphaConvert", + "state": "active", "type": "call", "priority": 1 }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 }, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -3591,7 +2778,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 2 + 1 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -3600,34207 +2787,613 @@ }, "func": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 1 + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "c", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "name": "d", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": true }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", + "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": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 + "argPriorityAgg": [ + 3 ], + "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": false }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "body": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 2 ], "emphasizePriority": false, "bound": true }, "state": "default", "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "alphaConvertDone", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "betaReducePreviewBefore", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "matchExists": true, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "betaReducePreviewAfter", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "betaReducePreviewCrossed", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "showFuncUnbound", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "betaReducePreviewBefore", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "matchExists": true, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "betaReducePreviewAfter", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "betaReducePreviewCrossed", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "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": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - } - }, - { - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "state": "showFuncUnbound", - "type": "call", - "priority": 1 - }, - "previouslyChangedExpressionState": "showFuncUnbound", - "activePriority": 1, - "containerState": "stepped" - }, - { - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "f", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "state": "betaReducePreviewBefore", - "type": "call", - "priority": 1 - }, - "previouslyChangedExpressionState": "betaReducePreviewBefore", - "matchExists": true, - "activePriority": 1, - "containerState": "stepped" - }, - { - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "name": "f", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "state": "betaReducePreviewAfter", - "type": "call", - "priority": 1 - }, - "previouslyChangedExpressionState": "betaReducePreviewAfter", - "activePriority": 1, - "containerState": "stepped" - }, - { - "expression": { - "arg": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "arg": { - "name": "f", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "state": "betaReducePreviewCrossed", - "type": "call", - "priority": 1 - }, - "previouslyChangedExpressionState": "betaReducePreviewCrossed", - "activePriority": 1, - "containerState": "stepped" - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "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": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "active", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "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": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "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 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 5 - }, - "priority": 1 - } - }, - { - "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 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 5 - }, - "priority": 1 - }, - "previouslyChangedExpressionState": "conditionActive", - "activePriority": 1, - "containerState": "stepped" - }, - { - "expression": { - "type": "conditional", - "state": "falseCaseActive", - "checkType": "isZero", - "condition": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 3 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 5 - }, - "priority": 1 - }, - "previouslyChangedExpressionState": "falseCaseActive", - "activePriority": 1, - "containerState": "stepped" - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 4 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "showFuncUnbound", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 4 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "needsAlphaConvert", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 4 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "alphaConvertDone", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 4 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "betaReducePreviewBefore", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 4 - }, - "matchExists": true, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "betaReducePreviewAfter", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 4 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "betaReducePreviewCrossed", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 4 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 5 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "showFuncUnbound", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 5 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "betaReducePreviewBefore", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 5 - }, - "matchExists": true, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "betaReducePreviewAfter", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 5 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "betaReducePreviewCrossed", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 5 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "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": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 3 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 3, - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "state": "showFuncUnbound", - "type": "call", - "priority": 1 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 3 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 3, - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "state": "betaReducePreviewBefore", - "type": "call", - "priority": 1 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 3 - }, - "matchExists": true, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 3, - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 3, - 8, - 5, - 6, - 7 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [ - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4, - 5 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9, - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 - }, - "state": "default", - "priority": 8 - }, - "priority": 3 - }, - "type": "function" - }, - "state": "betaReducePreviewAfter", - "type": "call", - "priority": 1 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 3 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 3, - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3, - 8, - 5, - 6, - 7 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4, - 5 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9, - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 - }, - "state": "default", - "priority": 8 - }, - "priority": 3 - }, - "type": "function" - }, - "state": "betaReducePreviewCrossed", - "type": "call", - "priority": 1 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 3 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4, - 5 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9, - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 - }, - "state": "default", - "priority": 8 - }, - "priority": 3 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 10 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": true, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "active", - "type": "call", - "priority": 2 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4, - 5 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9, - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 - }, - "state": "default", - "priority": 8 - }, - "priority": 3 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 10 - }, - "activePriority": 2 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "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": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 8 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8, - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 8 - }, - "state": "default", - "priority": 7 - }, - "priority": 2 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 9 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "active", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "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": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 8 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8, - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 8 - }, - "state": "default", - "priority": 7 - }, - "priority": 2 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 9 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "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 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "state": "default", - "priority": 6 - }, - "priority": 1 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 8 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "conditionActive", - "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 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "state": "default", - "priority": 6 - }, - "priority": 1 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 8 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "falseCaseActive", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "conditional", - "state": "falseCaseActive", - "checkType": "isZero", - "condition": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 2 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "state": "default", - "priority": 6 - }, - "priority": 1 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 8 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 6 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6, - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "state": "default", - "priority": 5 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 7 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "showFuncUnbound", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 6 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6, - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "state": "default", - "priority": 5 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 7 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "needsAlphaConvert", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 6 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6, - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "state": "default", - "priority": 5 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 7 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "alphaConvertDone", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 6 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6, - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "state": "default", - "priority": 5 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 7 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "betaReducePreviewBefore", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 6 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6, - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "state": "default", - "priority": 5 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 7 - }, - "matchExists": true, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "betaReducePreviewAfter", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 6 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6, - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "state": "default", - "priority": 5 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 7 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "betaReducePreviewCrossed", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 6 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6, - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "state": "default", - "priority": 5 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 7 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "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 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "state": "default", - "priority": 6 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 8 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", - "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 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "showFuncUnbound", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "state": "default", - "priority": 6 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 8 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", - "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 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "priority": 2 }, "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "name": "d", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], "emphasizePriority": false, "bound": false }, "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "shorthandFunc", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 4 + "priority": 3 }, - "func": { - "name": "c", - "highlightType": "active", + "second": { + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true }, "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "priority": 5 }, - "state": "default", - "priority": 5 + "priority": 2 }, - "priority": 2 + "type": "function" }, "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false + "type": "function" }, - "body": { + "func": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { - "name": "d", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], "emphasizePriority": false, "bound": false }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "shorthandFunc", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 4 + "priority": 3 }, - "func": { - "name": "c", - "highlightType": "active", + "second": { + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true }, "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "priority": 5 }, - "state": "default", - "priority": 5 + "priority": 2 }, - "priority": 2 + "type": "function" }, "type": "function" }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, "state": "default", "type": "call", "priority": 1 }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 3 }, - "type": "function" + "state": "default", + "type": "call", + "priority": 4 }, - "state": "betaReducePreviewBefore", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "second": { + "name": "f", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 }, - "state": "default", - "type": "call", - "priority": 7 + "priority": 2 }, - "state": "default", - "priority": 6 + "type": "function" }, - "second": { + "state": "default", + "type": "call", + "priority": 1 + } + }, + { + "expression": { + "arg": { "name": "shorthandNumber", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 + "argPriorityAgg": [ + 1 ], - "emphasizePriority": false, + "funcPriorityAgg": [], + "emphasizePriority": true, "bound": true, "shorthandNumber": 4 }, - "state": "default", - "priority": 8 - }, - "matchExists": true, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "func": { + "arg": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "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 - }, - "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 + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 1 ], "emphasizePriority": false, "bound": true, @@ -37808,1037 +3401,554 @@ }, "state": "default", "type": "call", - "priority": 4 + "priority": 1 }, - "func": { - "arg": { + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 1, - 2 + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, - "body": { + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "arg": { "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", + "name": "c", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], "emphasizePriority": false, "bound": false }, "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", + "arg": { + "name": "d", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], + "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": false }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", + "name": "shorthandFunc", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", + "name": "c", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 4 + "priority": 3 }, - "func": { - "name": "c", - "highlightType": "betaReduceCallArgHighlighted", + "second": { + "name": "d", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" }, "state": "default", "type": "call", "priority": 1 }, - "trueCase": { - "name": "shorthandNumber", + "type": "function" + }, + "func": { + "arg": { + "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3, + 4 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": false }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", + "name": "d", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], + "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": false }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", "priority": 1 }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3, - 4 + 2 ], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 }, - "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", - "type": "call", - "priority": 1 + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 3 + "type": "function" }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true + "type": "function" }, "state": "default", - "priority": 6 + "type": "call", + "priority": 1 }, - "priority": 2 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 3 }, - "type": "function" + "state": "default", + "type": "call", + "priority": 4 }, - "state": "betaReducePreviewAfter", - "type": "call", - "priority": 1 + "second": { + "name": "f", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 }, - "state": "default", - "type": "call", - "priority": 3 + "priority": 2 }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 + "type": "function" + }, + "state": "active", + "type": "call", + "priority": 1 + }, + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped" + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, "state": "default", - "priority": 6 + "type": "call", + "priority": 1 }, - "second": { + "trueCase": { "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", @@ -38846,64 +3956,33 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 1 }, - "state": "default", - "priority": 8 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { + "falseCase": { "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 - }, - "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 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", @@ -38913,7 +3992,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 5 ], "emphasizePriority": false, "bound": true, @@ -38921,495 +4000,250 @@ }, "state": "default", "type": "call", - "priority": 4 + "priority": 5 }, "func": { "arg": { "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "c", - "highlightType": "removed", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "removed", + "func": { + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 + "shorthandFunc": "pred" }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 1 }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "removed", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { "arg": { - "arg": { - "name": "d", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", - "highlightType": "removed", + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", - "highlightType": "removed", + "func": { + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 2 + "type": "function" }, "func": { "arg": { - "name": "a", - "highlightType": "removed", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1, - 3 + 3, + 4 ], - "emphasizePriority": true, + "emphasizePriority": false, "bound": false }, "body": { "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", + "func": { + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -39418,25 +4252,51 @@ 2 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": true }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 2, - 6, - 4, - 5 + 1 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -39444,13 +4304,13 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 1 ], "emphasizePriority": false, "bound": true, @@ -39458,500 +4318,175 @@ }, "state": "default", "type": "call", - "priority": 5 + "priority": 1 }, - "func": { - "arg": { + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", + "func": { + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3, - 4 + 3 ], "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 + "bound": true }, - "type": "function" + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", - "type": "call", - "priority": 3 + "priority": 5 }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true + "priority": 2 }, - "state": "default", - "priority": 6 + "type": "function" }, - "priority": 2 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, "type": "function" }, - "state": "betaReducePreviewCrossed", + "state": "default", "type": "call", - "priority": 1 + "priority": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "state": "default", "priority": 6 }, - "second": { + "priority": 2 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 1 + }, + "trueCase": { "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", @@ -39959,64 +4494,33 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 1 }, - "state": "default", - "priority": 8 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { + "falseCase": { "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", @@ -40026,7 +4530,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 5 ], "emphasizePriority": false, "bound": true, @@ -40034,597 +4538,473 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 5 }, "func": { "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "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": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", "priority": 1 }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", + "trueCase": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3, - 4 + 2 ], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "b", + "name": "c", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 }, "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": true }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 4 }, - "type": "function" + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", - "type": "call", - "priority": 1 + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 3 + "type": "function" }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true + "type": "function" }, "state": "default", - "priority": 6 + "type": "call", + "priority": 1 }, - "priority": 2 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5, - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "state": "default", - "priority": 4 + "priority": 6 }, - "second": { + "priority": 2 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "trueCase": { "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", @@ -40632,73 +5012,43 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 1 }, - "state": "default", - "priority": 6 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { + "falseCase": { "type": "binary", "binaryType": "multiply", "first": { "arg": { "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 6, - 4, - 1, - 2, - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4 ], "emphasizePriority": false, "bound": true, @@ -40706,597 +5056,470 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 4 }, "func": { "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", + "arg": { + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ + "argPriorityAgg": [ 2 ], + "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": false }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "body": { + "arg": { "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", "priority": 1 }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3, - 4 + 2 ], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "b", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 }, "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { "name": "d", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": true }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 4 }, - "type": "function" + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" - }, - "state": "showFuncUnbound", - "type": "call", - "priority": 1 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5, - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 }, "state": "default", "type": "call", - "priority": 5 + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "state": "default", - "priority": 4 + "priority": 5 }, - "second": { + "priority": 1 + } + }, + { + "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 + }, + "trueCase": { "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", @@ -41304,74 +5527,43 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 1 }, - "state": "default", - "priority": 6 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { + "falseCase": { "type": "binary", "binaryType": "multiply", "first": { "arg": { "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 6, - 4, - 1, - 2, - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4 ], "emphasizePriority": false, "bound": true, @@ -41379,840 +5571,598 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 4 }, "func": { "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ + "argPriorityAgg": [ 2 ], + "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": false }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], + "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": false }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 3 + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 ], - "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { "name": "c", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 3 ], "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" + "bound": true }, - "type": "function" + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", "priority": 1 }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3, - 4 + 2 ], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", - "type": "call", - "priority": 1 + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 3 + "type": "function" }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true + "type": "function" }, "state": "default", - "priority": 6 + "type": "call", + "priority": 1 }, - "priority": 2 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 2 }, - "state": "betaReducePreviewBefore", + "state": "default", "type": "call", - "priority": 1 + "priority": 3 }, "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5, - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "state": "default", - "priority": 4 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "priority": 5 }, - "state": "default", - "priority": 6 + "priority": 1 }, - "matchExists": true, - "activePriority": 1 + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", - "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 6, - 4, - 1, - 2, - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 + "first": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { "arg": { - "name": "e", - "highlightType": "active", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ + "argPriorityAgg": [ 1 ], - "emphasizePriority": true, + "funcPriorityAgg": [], + "emphasizePriority": false, "bound": false }, "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "arg": { "arg": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2, - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "shorthandFunc", - "highlightType": "active", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "priority": 2 }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 4, - 10, - 6, - 7, - 8, - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 1 ], "emphasizePriority": false, "bound": true, @@ -42220,551 +6170,321 @@ }, "state": "default", "type": "call", - "priority": 8 + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 7 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [ - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { - "name": "b", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "b", - "highlightType": "active", + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 2 + "priority": 4 }, "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", "type": "call", - "priority": 1 + "priority": 3 }, - "type": "function" + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "func": { + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "name": "b", - "highlightType": "active", + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5, - 6 + 1 ], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandFunc": "pred" }, - "body": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { - "name": "b", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "b", - "highlightType": "active", + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 2 + "priority": 4 }, "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", "type": "call", - "priority": 1 + "priority": 3 }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 11, - 12 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 12 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "state": "default", - "type": "call", - "priority": 12 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11, - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 11 + "type": "function" }, - "state": "default", - "priority": 10 + "type": "function" }, - "priority": 4 + "state": "default", + "type": "call", + "priority": 1 }, "type": "function" }, - "state": "betaReducePreviewAfter", - "type": "call", - "priority": 1 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5, - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, "state": "default", "type": "call", - "priority": 5 + "priority": 1 }, "state": "default", - "priority": 4 + "type": "call", + "priority": 2 }, "second": { "name": "shorthandNumber", @@ -42774,231 +6494,149 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 4 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 6 - }, - "activePriority": 1 + "priority": 4 + } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", "first": { - "type": "binary", - "binaryType": "multiply", - "first": { + "arg": { "arg": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 6, - 4, - 1, - 2, - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "func": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "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": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "shorthandFunc", + "name": "b", "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "priority": 2 }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 4, - 10, - 6, - 7, - 8, - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { "name": "shorthandFunc", @@ -43008,7 +6646,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 1 ], "emphasizePriority": false, "bound": true, @@ -43016,516 +6654,349 @@ }, "state": "default", "type": "call", - "priority": 8 + "priority": 1 }, - "func": { - "name": "shorthandFunc", + "trueCase": { + "name": "shorthandNumber", "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 7 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { - "name": "b", + "name": "d", "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "b", + "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 2 + "priority": 4 }, "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", "type": "call", - "priority": 1 + "priority": 3 }, - "type": "function" + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "func": { + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "name": "b", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5, - 6 + 1 ], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandFunc": "pred" }, - "body": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { - "name": "b", + "name": "d", "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "b", + "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 2 + "priority": 4 }, "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", "type": "call", - "priority": 1 + "priority": 3 }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 11, - 12 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 12 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "state": "default", - "type": "call", - "priority": 12 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11, - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 11 + "type": "function" }, - "state": "default", - "priority": 10 + "type": "function" }, - "priority": 4 + "state": "default", + "type": "call", + "priority": 1 }, "type": "function" }, - "state": "betaReducePreviewCrossed", + "state": "active", "type": "call", "priority": 1 }, - "second": { + "state": "default", + "type": "call", + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 4 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { "name": "shorthandNumber", "highlightType": "default", @@ -43533,7 +7004,9 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 5 + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -43548,7 +7021,6 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5, 4 ], "emphasizePriority": false, @@ -43557,245 +7029,122 @@ }, "state": "default", "type": "call", - "priority": 5 + "priority": 4 }, - "state": "default", - "priority": 4 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 6 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "func": { + "arg": { "arg": { "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2, - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "name": "shorthandFunc", + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ + "argPriorityAgg": [ + 1, 2 ], + "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": false }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "body": { "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "shorthandFunc", + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 8 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 7 - }, - "func": { - "arg": { + "func": { "arg": { - "name": "b", + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 5 + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 ], - "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "b", + "trueCase": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -43805,51 +7154,25 @@ 2 ], "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "name": "d", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -43863,7 +7186,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 4 ], "emphasizePriority": false, "bound": true, @@ -43871,108 +7194,84 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 + "bound": true }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 3 }, - "type": "function" + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, "type": "function" }, - "func": { + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { "name": "b", "highlightType": "default", "topLeftBadgeType": "none", @@ -43980,30 +7279,79 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5, - 6 + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 ], "emphasizePriority": false, "bound": false }, "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "b", + "trueCase": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -44013,51 +7361,25 @@ 2 ], "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "name": "d", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -44071,7 +7393,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 4 ], "emphasizePriority": false, "bound": true, @@ -44079,209 +7401,219 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 + "bound": true }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true }, - "type": "function" + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, "type": "function" }, "state": "default", "type": "call", - "priority": 5 + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 6 + "type": "function" }, - "second": { + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 11, - 12 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", + "trueCase": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 12 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 12 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11, - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 11 + "type": "function" }, - "state": "default", - "priority": 10 - }, - "priority": 4 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 14 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 14, - 13 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "type": "function" }, "state": "default", "type": "call", - "priority": 14 + "priority": 1 }, "state": "default", - "priority": 13 + "type": "call", + "priority": 3 }, "second": { "name": "shorthandNumber", @@ -44291,14 +7623,14 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 15 + 5 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 15 + "priority": 5 } }, { @@ -44308,215 +7640,156 @@ "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": true, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "active", - "type": "call", - "priority": 3 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { + "arg": { + "arg": { "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", + "argPriorityAgg": [ + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ 4 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "shorthandFunc", - "highlightType": "default", + "name": "b", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 8 + "priority": 2 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "func": { - "arg": { "arg": { - "name": "b", - "highlightType": "default", + "name": "a", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 5 + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 ], - "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "b", - "highlightType": "default", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -44525,51 +7798,25 @@ 2 ], "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "name": "d", - "highlightType": "default", + "name": "e", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -44577,13 +7824,13 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 4 ], "emphasizePriority": false, "bound": true, @@ -44591,140 +7838,165 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", + "func": { + "name": "a", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 + "bound": true }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 3 }, - "type": "function" + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, "type": "function" }, - "func": { + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { "arg": { "name": "b", - "highlightType": "default", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5, - 6 + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 ], "emphasizePriority": false, "bound": false }, "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "b", - "highlightType": "default", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -44733,51 +8005,25 @@ 2 ], "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "name": "d", - "highlightType": "default", + "name": "e", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -44785,13 +8031,13 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 4 ], "emphasizePriority": false, "bound": true, @@ -44799,174 +8045,247 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", + "func": { + "name": "a", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 + "bound": true }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 3 }, - "type": "function" + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 }, - "type": "function" + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 5 - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "second": { - "arg": { - "arg": { + "trueCase": { "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 11, - 12 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 12 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 12 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11, - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 11 + "type": "function" }, - "state": "default", - "priority": 10 + "type": "function" }, - "priority": 4 + "state": "active", + "type": "call", + "priority": 1 }, - "second": { + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 5 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "expression": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { "name": "shorthandNumber", "highlightType": "default", @@ -44974,7 +8293,9 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 14 + 3, + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -44989,8 +8310,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 14, - 13 + 2 ], "emphasizePriority": false, "bound": true, @@ -44998,59 +8318,39 @@ }, "state": "default", "type": "call", - "priority": 14 + "priority": 2 }, - "state": "default", - "priority": 13 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 15 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 15 - }, - "activePriority": 3 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { + "func": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "name": "shorthandNumber", + "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 1 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 3 + "bound": true }, "func": { "name": "shorthandFunc", @@ -45060,7 +8360,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, @@ -45068,85 +8368,42 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 1 }, - "func": { - "name": "shorthandFunc", + "trueCase": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 8 + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { "name": "shorthandFunc", @@ -45156,7 +8413,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 5 ], "emphasizePriority": false, "bound": true, @@ -45164,545 +8421,455 @@ }, "state": "default", "type": "call", - "priority": 7 + "priority": 5 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "func": { - "arg": { "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { - "name": "d", + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], "emphasizePriority": false, "bound": false }, - "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 + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", + "trueCase": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "shorthandFunc", + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 4 + "priority": 3 }, - "func": { - "name": "c", + "second": { + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true }, "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "priority": 5 }, - "state": "default", - "priority": 5 + "priority": 2 }, - "priority": 2 + "type": "function" }, "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4, - 5 - ], - "emphasizePriority": false, - "bound": false + "type": "function" }, - "body": { + "func": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { - "name": "d", + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], "emphasizePriority": false, "bound": false }, "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", + "arg": { + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], + "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": false }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 1 }, - "second": { - "name": "d", + "trueCase": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandNumber": 1 }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 10, - 11 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 }, "state": "default", "type": "call", - "priority": 11 + "priority": 4 }, - "func": { - "name": "shorthandFunc", + "second": { + "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10, - 9 + 6 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", - "type": "call", - "priority": 10 + "priority": 6 }, - "state": "default", - "priority": 9 - }, - "priority": 3 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 13 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 13, - 12 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 13 + "type": "function" }, "state": "default", - "priority": 12 + "type": "call", + "priority": 1 }, "second": { "name": "shorthandNumber", @@ -45712,14 +8879,14 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 14 + 3 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 14 + "priority": 3 } }, { @@ -45729,28 +8896,72 @@ "type": "binary", "binaryType": "multiply", "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "conditional", + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3, + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, "state": "default", - "checkType": "isZero", - "condition": { - "arg": { + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "name": "shorthandNumber", + "name": "d", "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 1 ], "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": true, - "shorthandNumber": 3 + "emphasizePriority": false, + "bound": true }, "func": { "name": "shorthandFunc", @@ -45760,103 +8971,60 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandFunc": "pred" }, - "state": "active", + "state": "default", "type": "call", - "priority": 2 + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 8 + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 5 ], "emphasizePriority": false, "bound": true, @@ -45864,545 +9032,455 @@ }, "state": "default", "type": "call", - "priority": 7 + "priority": 5 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "func": { - "arg": { "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { - "name": "d", - "highlightType": "default", + "name": "a", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], "emphasizePriority": false, "bound": false }, "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 + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", + "name": "a", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 4 + "priority": 3 }, - "func": { - "name": "c", - "highlightType": "default", + "second": { + "name": "e", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true }, "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "priority": 5 }, - "state": "default", - "priority": 5 + "priority": 2 }, - "priority": 2 + "type": "function" }, "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4, - 5 - ], - "emphasizePriority": false, - "bound": false + "type": "function" }, - "body": { + "func": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { - "name": "d", - "highlightType": "default", + "name": "a", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], "emphasizePriority": false, "bound": false }, "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 + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", + "name": "a", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 4 + "priority": 3 }, - "func": { - "name": "c", - "highlightType": "default", + "second": { + "name": "e", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true }, "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "priority": 5 }, - "state": "default", - "priority": 5 + "priority": 2 }, - "priority": 2 + "type": "function" }, "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 3 }, "state": "default", "type": "call", "priority": 4 }, - "state": "default", - "type": "call", - "priority": 5 - }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 10, - 11 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 11 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", + "second": { + "name": "d", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10, - 9 + 6 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", - "type": "call", - "priority": 10 + "priority": 6 }, - "state": "default", - "priority": 9 - }, - "priority": 3 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 13 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 13, - 12 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 13 + "type": "function" }, - "state": "default", - "priority": 12 + "state": "active", + "type": "call", + "priority": 1 }, "second": { "name": "shorthandNumber", @@ -46412,16 +9490,16 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 14 + 3 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 14 + "priority": 3 }, - "activePriority": 2 + "activePriority": 1 }, { "containerState": "ready", @@ -46430,13 +9508,11 @@ "type": "binary", "binaryType": "multiply", "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { "arg": { "name": "shorthandNumber", "highlightType": "default", @@ -46444,12 +9520,13 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", @@ -46459,7 +9536,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, @@ -46467,623 +9544,563 @@ }, "state": "default", "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "func": { "arg": { "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { "arg": { - "name": "shorthandNumber", + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 13, - 11, - 2, - 8, - 4, - 5, - 6, - 7 + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "bound": true }, "func": { - "name": "shorthandFunc", + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 7 + "priority": 2 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "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": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "func": { + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 3 + "type": "function" }, "state": "default", "type": "call", "priority": 4 }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 9, - 10 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 10 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9, - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 - }, "state": "default", - "priority": 8 - }, - "priority": 2 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 12 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "type": "call", + "priority": 5 }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 12, - 11 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 }, "state": "default", - "type": "call", - "priority": 12 + "priority": 8 }, - "state": "default", - "priority": 11 + "priority": 3 }, "second": { "name": "shorthandNumber", @@ -47093,14 +10110,14 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 13 + 10 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 13 + "priority": 10 } }, { @@ -47110,13 +10127,11 @@ "type": "binary", "binaryType": "multiply", "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { "arg": { "name": "shorthandNumber", "highlightType": "active", @@ -47124,12 +10139,13 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", @@ -47139,7 +10155,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": true, "bound": true, @@ -47147,85 +10163,64 @@ }, "state": "active", "type": "call", - "priority": 1 + "priority": 2 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 3, + 8, + 5, + 6, + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", @@ -47235,7 +10230,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 7 ], "emphasizePriority": false, "bound": true, @@ -47243,527 +10238,488 @@ }, "state": "default", "type": "call", - "priority": 5 + "priority": 7 }, "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "func": { + "arg": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "func": { + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4, + 5 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 3 + "type": "function" }, "state": "default", "type": "call", "priority": 4 }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 9, - 10 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 10 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9, - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 - }, "state": "default", - "priority": 8 - }, - "priority": 2 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 12 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "type": "call", + "priority": 5 }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 12, - 11 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 }, "state": "default", - "type": "call", - "priority": 12 + "priority": 8 }, - "state": "default", - "priority": 11 + "priority": 3 }, "second": { "name": "shorthandNumber", @@ -47773,16 +10729,16 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 13 + 10 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 13 + "priority": 10 }, - "activePriority": 1 + "activePriority": 2 }, { "containerState": "ready", @@ -47791,26 +10747,26 @@ "type": "binary", "binaryType": "multiply", "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { + "arg": { "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], + "argPriorityAgg": [ + 1 + ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 3 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -47821,515 +10777,630 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "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": { "arg": { "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { "arg": { - "name": "shorthandNumber", + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 12, - 10, 1, - 7, - 3, - 4, - 5, - 6 + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "bound": true }, "func": { - "name": "shorthandFunc", + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 6 + "priority": 2 }, "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "func": { + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 2 + "type": "function" }, "state": "default", "type": "call", "priority": 3 }, - "second": { + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "state": "default", + "priority": 7 + }, + "priority": 2 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 9 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { "arg": { "name": "shorthandNumber", @@ -48338,8 +11409,12 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 8, - 9 + 9, + 2, + 7, + 4, + 5, + 6 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -48354,7 +11429,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 9 + 6 ], "emphasizePriority": false, "bound": true, @@ -48362,7 +11437,7 @@ }, "state": "default", "type": "call", - "priority": 9 + "priority": 6 }, "func": { "name": "shorthandFunc", @@ -48372,8 +11447,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8, - 7 + 5 ], "emphasizePriority": false, "bound": true, @@ -48381,708 +11455,470 @@ }, "state": "default", "type": "call", - "priority": 8 + "priority": 5 }, - "state": "default", - "priority": 7 - }, - "priority": 1 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 11 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11, - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 11 - }, - "state": "default", - "priority": 10 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 12 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 12 - } - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "conditionActive", - "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 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "func": { "arg": { "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { "arg": { - "name": "shorthandNumber", + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 12, - 10, 1, - 7, - 3, - 4, - 5, - 6 + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "bound": true }, "func": { - "name": "shorthandFunc", + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 6 + "priority": 2 }, "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, "state": "default", "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": false + "priority": 2 }, - "body": { + "func": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 2 + "type": "function" }, "state": "default", "type": "call", "priority": 3 }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 8, - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8, - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 8 - }, "state": "default", - "priority": 7 - }, - "priority": 1 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 11 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "type": "call", + "priority": 4 }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11, - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8, + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 }, "state": "default", - "type": "call", - "priority": 11 + "priority": 7 }, - "state": "default", - "priority": 10 + "priority": 2 }, "second": { "name": "shorthandNumber", @@ -49092,563 +11928,636 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 12 + 9 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 12 + "priority": 9 }, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "falseCaseActive", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "conditional", - "state": "falseCaseActive", - "checkType": "isZero", - "condition": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "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": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { "arg": { "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { "arg": { - "name": "shorthandNumber", + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 12, - 10, 1, - 7, - 3, - 4, - 5, - 6 + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "bound": true }, "func": { - "name": "shorthandFunc", + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 6 + "priority": 2 }, "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "func": { + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 2 + "type": "function" }, "state": "default", "type": "call", - "priority": 3 + "priority": 2 }, - "second": { + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 8 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "conditionActive", + "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { "arg": { "name": "shorthandNumber", @@ -49658,7 +12567,11 @@ "type": "variable", "argPriorityAgg": [ 8, - 9 + 1, + 6, + 3, + 4, + 5 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -49673,7 +12586,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 9 + 5 ], "emphasizePriority": false, "bound": true, @@ -49681,7 +12594,7 @@ }, "state": "default", "type": "call", - "priority": 9 + "priority": 5 }, "func": { "name": "shorthandFunc", @@ -49691,8 +12604,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8, - 7 + 4 ], "emphasizePriority": false, "bound": true, @@ -49700,171 +12612,228 @@ }, "state": "default", "type": "call", - "priority": 8 + "priority": 4 }, - "state": "default", - "priority": 7 - }, - "priority": 1 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 11 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11, - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 11 - }, - "state": "default", - "priority": 10 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 12 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 12 - }, - "activePriority": 1 - }, - { - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "func": { "arg": { "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { "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 + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" }, "state": "default", "type": "call", - "priority": 5 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 4 + "type": "function" }, "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "arg": { "arg": { "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 1 + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 ], - "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, @@ -49903,7 +12872,7 @@ }, "func": { "arg": { - "name": "c", + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -49917,7 +12886,7 @@ }, "body": { "arg": { - "name": "d", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -49933,7 +12902,7 @@ "checkType": "isZero", "condition": { "arg": { - "name": "d", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -49983,7 +12952,7 @@ "first": { "arg": { "arg": { - "name": "d", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -50017,7 +12986,7 @@ "priority": 4 }, "func": { - "name": "c", + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -50034,7 +13003,7 @@ "priority": 3 }, "second": { - "name": "d", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -50061,278 +13030,561 @@ }, "type": "function" }, + "state": "default", + "type": "call", + "priority": 2 + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7, + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "state": "default", + "priority": 6 + }, + "priority": 1 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 8 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "b", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], + "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": false }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 2 + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false }, - "func": { + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7, - 8 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 8 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "type": "function" }, "state": "default", "type": "call", - "priority": 7 + "priority": 1 }, "state": "default", - "priority": 6 + "type": "call", + "priority": 2 }, "second": { "arg": { @@ -50342,7 +13594,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 10 + 6 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -50357,8 +13609,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10, - 9 + 6, + 5 ], "emphasizePriority": false, "bound": true, @@ -50366,10 +13618,10 @@ }, "state": "default", "type": "call", - "priority": 10 + "priority": 6 }, "state": "default", - "priority": 9 + "priority": 5 }, "second": { "name": "shorthandNumber", @@ -50379,19 +13631,19 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11 + 7 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 11 + "priority": 7 } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -50399,67 +13651,25 @@ "type": "binary", "binaryType": "multiply", "first": { - "type": "binary", - "binaryType": "multiply", - "first": { + "arg": { "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 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 7, + 5, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", @@ -50469,7 +13679,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, "bound": true, @@ -50477,488 +13687,449 @@ }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "arg": { "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "func": { + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "c", + "name": "e", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "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 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandFunc": "pred" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "c", + "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, - "second": { - "name": "d", + "func": { + "name": "a", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", - "priority": 5 + "type": "call", + "priority": 3 }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "showFuncUnbound", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7, - 8 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 8 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "type": "function" }, - "state": "default", + "state": "active", "type": "call", - "priority": 7 + "priority": 1 }, "state": "default", - "priority": 6 + "type": "call", + "priority": 2 }, "second": { "arg": { @@ -50968,7 +14139,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 10 + 6 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -50983,8 +14154,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10, - 9 + 6, + 5 ], "emphasizePriority": false, "bound": true, @@ -50992,10 +14163,10 @@ }, "state": "default", "type": "call", - "priority": 10 + "priority": 6 }, "state": "default", - "priority": 9 + "priority": 5 }, "second": { "name": "shorthandNumber", @@ -51005,20 +14176,20 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11 + 7 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 11 + "priority": 7 }, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -51026,67 +14197,25 @@ "type": "binary", "binaryType": "multiply", "first": { - "type": "binary", - "binaryType": "multiply", - "first": { + "arg": { "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 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 6, + 3, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", @@ -51096,7 +14225,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true, @@ -51104,30 +14233,50 @@ }, "state": "default", "type": "call", - "priority": 3 + "priority": 5 }, "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 1, + 2 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": false }, "body": { "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -51139,9 +14288,9 @@ }, "func": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51157,9 +14306,9 @@ "func": { "arg": { "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51171,9 +14320,9 @@ "body": { "arg": { "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -51187,9 +14336,9 @@ "condition": { "arg": { "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -51200,9 +14349,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51218,9 +14367,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51237,9 +14386,9 @@ "arg": { "arg": { "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -51253,9 +14402,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51271,9 +14420,9 @@ }, "func": { "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51288,9 +14437,9 @@ }, "second": { "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "callArg", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51317,25 +14466,24 @@ "func": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1, 2 ], - "emphasizePriority": true, + "emphasizePriority": false, "bound": false }, "body": { "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -51347,9 +14495,9 @@ }, "func": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51365,9 +14513,9 @@ "func": { "arg": { "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "funcUnbound", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51379,9 +14527,9 @@ "body": { "arg": { "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "conflict", - "bottomRightBadgeType": "funcUnbound", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -51395,9 +14543,9 @@ "condition": { "arg": { "name": "d", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -51408,9 +14556,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51426,9 +14574,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51445,9 +14593,9 @@ "arg": { "arg": { "name": "d", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -51461,9 +14609,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51479,9 +14627,9 @@ }, "func": { "name": "c", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51496,9 +14644,9 @@ }, "second": { "name": "d", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51522,70 +14670,172 @@ }, "type": "function" }, - "state": "needsAlphaConvert", + "state": "default", "type": "call", - "priority": 1 + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { + "func": { "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7, - 8 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 1, + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": false }, - "state": "default", - "type": "call", - "priority": 8 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" }, "state": "default", "type": "call", - "priority": 7 + "priority": 1 }, "state": "default", - "priority": 6 + "type": "call", + "priority": 3 }, "second": { "arg": { @@ -51595,7 +14845,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 10 + 7 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -51610,8 +14860,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10, - 9 + 7, + 6 ], "emphasizePriority": false, "bound": true, @@ -51619,10 +14869,10 @@ }, "state": "default", "type": "call", - "priority": 10 + "priority": 7 }, "state": "default", - "priority": 9 + "priority": 6 }, "second": { "name": "shorthandNumber", @@ -51632,88 +14882,45 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11 + 8 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 11 - }, - "activePriority": 1 + "priority": 8 + } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", + "previouslyChangedExpressionState": "active", "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 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "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 }, "func": { "name": "shorthandFunc", @@ -51723,7 +14930,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true, @@ -51731,18 +14938,38 @@ }, "state": "default", "type": "call", - "priority": 3 + "priority": 5 }, "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { "arg": { "arg": { "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": true, @@ -51754,7 +14981,7 @@ "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -51768,7 +14995,7 @@ "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51783,10 +15010,10 @@ }, "func": { "arg": { - "name": "a", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51797,10 +15024,10 @@ }, "body": { "arg": { - "name": "e", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -51813,10 +15040,10 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -51829,7 +15056,7 @@ "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51847,7 +15074,7 @@ "name": "shorthandNumber", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51863,10 +15090,10 @@ "first": { "arg": { "arg": { - "name": "e", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -51882,7 +15109,7 @@ "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51897,10 +15124,10 @@ "priority": 4 }, "func": { - "name": "a", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51914,10 +15141,10 @@ "priority": 3 }, "second": { - "name": "e", - "highlightType": "conflictResolvedHighlighted", - "topLeftBadgeType": "conflictResolved", - "bottomRightBadgeType": "callArg", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51946,14 +15173,13 @@ "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1, 2 ], - "emphasizePriority": true, + "emphasizePriority": false, "bound": false }, "body": { @@ -51962,7 +15188,7 @@ "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -51976,7 +15202,7 @@ "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -51994,7 +15220,7 @@ "name": "c", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -52008,7 +15234,7 @@ "name": "d", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -52024,7 +15250,7 @@ "name": "d", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -52037,7 +15263,7 @@ "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -52055,7 +15281,7 @@ "name": "shorthandNumber", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -52074,7 +15300,7 @@ "name": "d", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -52090,7 +15316,7 @@ "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -52108,7 +15334,7 @@ "name": "c", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -52125,7 +15351,7 @@ "name": "d", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -52149,70 +15375,172 @@ }, "type": "function" }, - "state": "alphaConvertDone", + "state": "default", "type": "call", - "priority": 1 + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { + "func": { "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7, - 8 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", + "name": "a", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 1, + 3 ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "emphasizePriority": true, + "bound": false }, - "state": "default", - "type": "call", - "priority": 8 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" }, - "state": "default", + "state": "active", "type": "call", - "priority": 7 + "priority": 1 }, "state": "default", - "priority": 6 + "type": "call", + "priority": 3 }, "second": { "arg": { @@ -52222,7 +15550,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 10 + 7 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -52237,8 +15565,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10, - 9 + 7, + 6 ], "emphasizePriority": false, "bound": true, @@ -52246,10 +15574,10 @@ }, "state": "default", "type": "call", - "priority": 10 + "priority": 7 }, "state": "default", - "priority": 9 + "priority": 6 }, "second": { "name": "shorthandNumber", @@ -52259,20 +15587,20 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11 + 8 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 11 + "priority": 8 }, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -52280,67 +15608,25 @@ "type": "binary", "binaryType": "multiply", "first": { - "type": "binary", - "binaryType": "multiply", - "first": { + "arg": { "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 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", @@ -52361,485 +15647,573 @@ "priority": 3 }, "func": { - "arg": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "name": "b", - "highlightType": "active", + "name": "e", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 ], "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false + "emphasizePriority": false, + "bound": true }, - "body": { + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { - "name": "b", - "highlightType": "active", + "name": "e", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 2, + 6, + 4, + 5 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "b", - "highlightType": "active", + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { + "type": "call", + "priority": 5 + }, + "func": { + "arg": { "arg": { - "name": "e", - "highlightType": "active", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], + "argPriorityAgg": [ + 3 + ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "arg": { "arg": { - "name": "e", - "highlightType": "active", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "shorthandFunc", - "highlightType": "active", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "priority": 2 }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "type": "function" }, - "state": "default", - "priority": 5 + "type": "function" }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 1 }, "type": "function" }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { - "name": "d", - "highlightType": "active", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], "emphasizePriority": false, "bound": false }, "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "arg": { "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "priority": 2 }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "type": "function" }, - "state": "default", - "priority": 5 + "type": "function" }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 1 }, "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 3 }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "type": "function" - }, - "state": "betaReducePreviewBefore", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7, - 8 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 }, - "state": "default", - "type": "call", - "priority": 8 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 7 + "type": "function" }, "state": "default", - "priority": 6 + "type": "call", + "priority": 1 }, "second": { "arg": { @@ -52849,7 +16223,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 10 + 5 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -52864,8 +16238,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10, - 9 + 5, + 4 ], "emphasizePriority": false, "bound": true, @@ -52873,10 +16247,10 @@ }, "state": "default", "type": "call", - "priority": 10 + "priority": 5 }, "state": "default", - "priority": 9 + "priority": 4 }, "second": { "name": "shorthandNumber", @@ -52886,21 +16260,19 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11 + 6 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 11 - }, - "matchExists": true, - "activePriority": 1 + "priority": 6 + } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -52908,71 +16280,29 @@ "type": "binary", "binaryType": "multiply", "first": { - "type": "binary", - "binaryType": "multiply", - "first": { + "arg": { "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 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 6, + 4, + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -52989,240 +16319,136 @@ "priority": 3 }, "func": { - "arg": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", + "name": "e", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 ], "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false + "emphasizePriority": false, + "bound": true }, - "body": { + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", + "name": "e", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 2, + 6, + 4, + 5 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", + "name": "shorthandFunc", + "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 2 + "priority": 5 }, "func": { - "arg": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { "arg": { "arg": { "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 3 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -53232,9 +16458,9 @@ "arg": { "arg": { "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -53246,9 +16472,9 @@ }, "func": { "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53263,10 +16489,10 @@ }, "func": { "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53277,10 +16503,10 @@ }, "body": { "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -53293,10 +16519,10 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -53307,9 +16533,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53325,9 +16551,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53343,10 +16569,10 @@ "first": { "arg": { "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -53360,9 +16586,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53377,10 +16603,10 @@ "priority": 4 }, "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53394,10 +16620,10 @@ "priority": 3 }, "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53424,13 +16650,14 @@ "func": { "arg": { "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3, + 4 ], "emphasizePriority": false, "bound": false @@ -53439,9 +16666,9 @@ "arg": { "arg": { "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -53453,9 +16680,9 @@ }, "func": { "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53470,10 +16697,10 @@ }, "func": { "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53484,10 +16711,10 @@ }, "body": { "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -53500,10 +16727,10 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -53514,9 +16741,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53532,9 +16759,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53550,10 +16777,10 @@ "first": { "arg": { "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -53567,9 +16794,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53584,10 +16811,10 @@ "priority": 4 }, "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53601,10 +16828,10 @@ "priority": 3 }, "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -53614,208 +16841,748 @@ "bound": true }, "state": "default", - "priority": 5 + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 6 + }, + "priority": 2 + }, + "type": "function" + }, + "state": "active", + "type": "call", + "priority": 1 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "state": "default", + "priority": 4 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 6 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, - "priority": 2 + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 }, - "type": "function" + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, "type": "function" }, "state": "default", "type": "call", - "priority": 2 + "priority": 1 }, - "func": { + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { - "name": "d", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], "emphasizePriority": false, "bound": false }, "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "shorthandFunc", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 4 + "priority": 3 }, - "func": { - "name": "c", - "highlightType": "active", + "second": { + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true }, "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "priority": 5 }, - "state": "default", - "priority": 5 + "priority": 2 }, - "priority": 2 + "type": "function" }, "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 5 }, - "state": "betaReducePreviewAfter", + "state": "default", "type": "call", - "priority": 1 + "priority": 6 }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { + "second": { "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7, - 8 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 }, "func": { "name": "shorthandFunc", @@ -53825,7 +17592,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 11, + 10 ], "emphasizePriority": false, "bound": true, @@ -53833,29 +17601,12 @@ }, "state": "default", "type": "call", - "priority": 8 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 11 }, "state": "default", - "type": "call", - "priority": 7 + "priority": 10 }, - "state": "default", - "priority": 6 + "priority": 4 }, "second": { "arg": { @@ -53865,7 +17616,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 10 + 14 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -53880,8 +17631,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10, - 9 + 14, + 13 ], "emphasizePriority": false, "bound": true, @@ -53889,10 +17640,10 @@ }, "state": "default", "type": "call", - "priority": 10 + "priority": 14 }, "state": "default", - "priority": 9 + "priority": 13 }, "second": { "name": "shorthandNumber", @@ -53902,20 +17653,19 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11 + 15 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 11 - }, - "activePriority": 1 + "priority": 15 + } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -53923,67 +17673,45 @@ "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": [ - 11, - 9, - 6, - 2, - 3, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "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 + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 3 ], - "emphasizePriority": false, + "emphasizePriority": true, "bound": true, "shorthandFunc": "pred" }, - "state": "default", + "state": "active", "type": "call", - "priority": 4 + "priority": 3 }, "func": { "name": "shorthandFunc", @@ -53993,7 +17721,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 2 ], "emphasizePriority": false, "bound": true, @@ -54001,237 +17729,142 @@ }, "state": "default", "type": "call", - "priority": 3 + "priority": 2 }, "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { - "name": "b", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, - "bound": false - }, - "body": { "arg": { "arg": { - "name": "b", - "highlightType": "removed", + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 15, + 13, + 4, + 10, + 6, + 7, + 8, + 9 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandNumber": 4 }, "func": { - "name": "b", - "highlightType": "removed", + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 9 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 2 + "priority": 9 }, "func": { - "arg": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "removed", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 1 + "priority": 8 }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "removed", + "func": { + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1, - 2 + 7 ], - "emphasizePriority": true, - "bound": false + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, - "body": { + "state": "default", + "type": "call", + "priority": 7 + }, + "func": { + "arg": { "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -54241,287 +17874,117 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": true }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true }, - "type": "function" + "state": "default", + "type": "call", + "priority": 2 }, "func": { "arg": { - "name": "b", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, "bound": false }, "body": { "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -54529,13 +17992,13 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 4 ], "emphasizePriority": false, "bound": true, @@ -54543,294 +18006,303 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", + "func": { + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 + "bound": true }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 3 }, - "type": "function" + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, "type": "function" }, "state": "default", "type": "call", - "priority": 2 + "priority": 1 }, - "func": { + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5, + 6 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 }, - "body": { + "func": { "arg": { - "name": "d", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], "emphasizePriority": false, "bound": false }, "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 + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "shorthandFunc", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 4 + "priority": 3 }, - "func": { - "name": "c", - "highlightType": "active", + "second": { + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true }, "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "priority": 5 }, - "state": "default", - "priority": 5 + "priority": 2 }, - "priority": 2 + "type": "function" }, "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 1 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 5 }, - "state": "betaReducePreviewCrossed", + "state": "default", "type": "call", - "priority": 1 + "priority": 6 }, - "state": "default", - "type": "call", - "priority": 2 - }, - "second": { - "arg": { + "second": { "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 7, - 8 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 11, + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 }, "func": { "name": "shorthandFunc", @@ -54840,37 +18312,21 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 11, + 10 ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 8 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 7, - 6 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 11 }, "state": "default", - "type": "call", - "priority": 7 + "priority": 10 }, - "state": "default", - "priority": 6 + "priority": 4 }, "second": { "arg": { @@ -54880,7 +18336,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 10 + 14 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -54895,8 +18351,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10, - 9 + 14, + 13 ], "emphasizePriority": false, "bound": true, @@ -54904,10 +18360,10 @@ }, "state": "default", "type": "call", - "priority": 10 + "priority": 14 }, "state": "default", - "priority": 9 + "priority": 13 }, "second": { "name": "shorthandNumber", @@ -54917,16 +18373,16 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11 + 15 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 11 + "priority": 15 }, - "activePriority": 1 + "activePriority": 3 }, { "containerState": "ready", @@ -54938,31 +18394,121 @@ "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "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 + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 }, "func": { "name": "shorthandFunc", @@ -54972,7 +18518,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 7 ], "emphasizePriority": false, "bound": true, @@ -54980,7 +18526,7 @@ }, "state": "default", "type": "call", - "priority": 6 + "priority": 7 }, "func": { "name": "shorthandFunc", @@ -54990,7 +18536,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 6 ], "emphasizePriority": false, "bound": true, @@ -54998,28 +18544,9 @@ }, "state": "default", "type": "call", - "priority": 5 + "priority": 6 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { "arg": { "arg": { "name": "b", @@ -55028,8 +18555,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -55070,7 +18596,7 @@ }, "func": { "arg": { - "name": "a", + "name": "c", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55084,7 +18610,7 @@ }, "body": { "arg": { - "name": "e", + "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55100,7 +18626,7 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", + "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55150,7 +18676,7 @@ "first": { "arg": { "arg": { - "name": "e", + "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55184,7 +18710,7 @@ "priority": 4 }, "func": { - "name": "a", + "name": "c", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55201,7 +18727,7 @@ "priority": 3 }, "second": { - "name": "e", + "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55237,7 +18763,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4, + 5 ], "emphasizePriority": false, "bound": false @@ -55277,7 +18804,7 @@ }, "func": { "arg": { - "name": "a", + "name": "c", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55291,7 +18818,7 @@ }, "body": { "arg": { - "name": "e", + "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55307,7 +18834,7 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", + "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55357,7 +18884,7 @@ "first": { "arg": { "arg": { - "name": "e", + "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55391,7 +18918,7 @@ "priority": 4 }, "func": { - "name": "a", + "name": "c", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55408,7 +18935,7 @@ "priority": 3 }, "second": { - "name": "e", + "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", @@ -55437,187 +18964,46 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 4 }, - "func": { + "state": "default", + "type": "call", + "priority": 5 + }, + "second": { + "arg": { "arg": { - "name": "c", + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1, - 3 + 11 ], "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" + "bound": true, + "shorthandFunc": "pred" }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 8, - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "state": "default", + "type": "call", + "priority": 11 }, "func": { "name": "shorthandFunc", @@ -55627,6 +19013,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ + 10, 9 ], "emphasizePriority": false, @@ -55635,29 +19022,12 @@ }, "state": "default", "type": "call", - "priority": 9 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8, - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 10 }, "state": "default", - "type": "call", - "priority": 8 + "priority": 9 }, - "state": "default", - "priority": 7 + "priority": 3 }, "second": { "arg": { @@ -55667,7 +19037,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 11 + 13 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -55682,8 +19052,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11, - 10 + 13, + 12 ], "emphasizePriority": false, "bound": true, @@ -55691,10 +19061,10 @@ }, "state": "default", "type": "call", - "priority": 11 + "priority": 13 }, "state": "default", - "priority": 10 + "priority": 12 }, "second": { "name": "shorthandNumber", @@ -55704,19 +19074,19 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 12 + 14 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 12 + "priority": 14 } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -55724,31 +19094,121 @@ "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "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 + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 8 }, "func": { "name": "shorthandFunc", @@ -55758,7 +19218,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 7 ], "emphasizePriority": false, "bound": true, @@ -55766,7 +19226,7 @@ }, "state": "default", "type": "call", - "priority": 6 + "priority": 7 }, "func": { "name": "shorthandFunc", @@ -55776,7 +19236,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 6 ], "emphasizePriority": false, "bound": true, @@ -55784,50 +19244,30 @@ }, "state": "default", "type": "call", - "priority": 5 + "priority": 6 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 4 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": false }, "body": { "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -55839,9 +19279,9 @@ }, "func": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -55856,10 +19296,10 @@ }, "func": { "arg": { - "name": "a", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -55870,10 +19310,10 @@ }, "body": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -55886,10 +19326,10 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -55900,9 +19340,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -55918,9 +19358,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -55936,10 +19376,10 @@ "first": { "arg": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -55953,9 +19393,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -55970,10 +19410,10 @@ "priority": 4 }, "func": { - "name": "a", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -55987,10 +19427,10 @@ "priority": 3 }, "second": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56017,13 +19457,14 @@ "func": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4, + 5 ], "emphasizePriority": false, "bound": false @@ -56032,9 +19473,9 @@ "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -56046,9 +19487,9 @@ }, "func": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56063,10 +19504,10 @@ }, "func": { "arg": { - "name": "a", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56077,10 +19518,10 @@ }, "body": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -56093,10 +19534,10 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -56107,9 +19548,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56125,9 +19566,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56143,10 +19584,10 @@ "first": { "arg": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -56160,9 +19601,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56177,10 +19618,10 @@ "priority": 4 }, "func": { - "name": "a", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56194,10 +19635,10 @@ "priority": 3 }, "second": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56223,187 +19664,46 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 4 }, - "func": { + "state": "default", + "type": "call", + "priority": 5 + }, + "second": { + "arg": { "arg": { - "name": "c", - "highlightType": "active", + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 10, + 11 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1, - 3 + 11 ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, - "type": "function" - }, - "state": "showFuncUnbound", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 8, - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "state": "default", + "type": "call", + "priority": 11 }, "func": { "name": "shorthandFunc", @@ -56413,6 +19713,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ + 10, 9 ], "emphasizePriority": false, @@ -56421,29 +19722,12 @@ }, "state": "default", "type": "call", - "priority": 9 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8, - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 10 }, "state": "default", - "type": "call", - "priority": 8 + "priority": 9 }, - "state": "default", - "priority": 7 + "priority": 3 }, "second": { "arg": { @@ -56453,89 +19737,159 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 11 + 13 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, - "func": { - "name": "shorthandFunc", + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13, + 12 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 13 + }, + "state": "default", + "priority": 12 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 14 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 14 + }, + "activePriority": 2 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11, - 10 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 11 - }, - "state": "default", - "priority": 10 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 12 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 12 - }, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", - "expression": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "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 + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 }, "func": { "name": "shorthandFunc", @@ -56574,47 +19928,27 @@ "priority": 5 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 3 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": false }, "body": { "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -56626,9 +19960,9 @@ }, "func": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56643,10 +19977,10 @@ }, "func": { "arg": { - "name": "a", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56657,10 +19991,10 @@ }, "body": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -56673,10 +20007,10 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -56687,9 +20021,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56705,9 +20039,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56723,10 +20057,10 @@ "first": { "arg": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -56740,9 +20074,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56757,10 +20091,10 @@ "priority": 4 }, "func": { - "name": "a", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56774,10 +20108,218 @@ "priority": 3 }, "second": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3, + 4 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56797,21 +20339,286 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "priority": 2 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "state": "default", + "priority": 11 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 13 + } + }, + { + "containerState": "stepped", + "previouslyChangedExpressionState": "active", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 7 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 7 }, - "type": "function" + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 }, "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": { + "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 + "argPriorityAgg": [ + 3 ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, @@ -56819,9 +20626,9 @@ "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -56833,9 +20640,9 @@ }, "func": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56850,10 +20657,10 @@ }, "func": { "arg": { - "name": "a", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56864,10 +20671,10 @@ }, "body": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -56880,10 +20687,10 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -56894,9 +20701,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56912,9 +20719,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56930,10 +20737,10 @@ "first": { "arg": { "arg": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -56947,9 +20754,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56964,10 +20771,10 @@ "priority": 4 }, "func": { - "name": "a", - "highlightType": "active", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -56981,428 +20788,55 @@ "priority": 3 }, "second": { - "name": "e", - "highlightType": "active", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "c", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "betaReducePreviewBefore", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 8, - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8, - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 8 - }, - "state": "default", - "priority": 7 - }, - "second": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 11 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11, - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 11 - }, - "state": "default", - "priority": 10 - }, - "second": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 12 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "state": "default", - "priority": 12 - }, - "matchExists": true, - "activePriority": 1 - }, - { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", - "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 + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", + "type": "function" + }, + "func": { + "arg": { + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 3, + 4 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "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": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { - "arg": { - "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": true, "bound": false }, "body": { "arg": { "arg": { "name": "b", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -57414,9 +20848,9 @@ }, "func": { "name": "b", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57431,10 +20865,10 @@ }, "func": { "arg": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57445,10 +20879,10 @@ }, "body": { "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -57461,10 +20895,10 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -57475,9 +20909,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57493,9 +20927,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57511,10 +20945,10 @@ "first": { "arg": { "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -57528,9 +20962,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57545,10 +20979,10 @@ "priority": 4 }, "func": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57562,10 +20996,10 @@ "priority": 3 }, "second": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57589,17 +21023,262 @@ }, "type": "function" }, + "state": "default", + "type": "call", + "priority": 3 + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "second": { + "arg": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 9, + 10 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 10 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 10 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9, + 8 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 + }, + "state": "default", + "priority": 8 + }, + "priority": 2 + }, + "second": { + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 12 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 12, + 11 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 12 + }, + "state": "default", + "priority": 11 + }, + "second": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 13 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "state": "default", + "priority": 13 + }, + "activePriority": 1 + }, + { + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { + "arg": { + "arg": { "arg": { - "name": "b", - "highlightType": "betaReduceCallArgHighlighted", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 5 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ 2 ], + "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, @@ -57607,9 +21286,9 @@ "arg": { "arg": { "name": "b", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -57621,9 +21300,9 @@ }, "func": { "name": "b", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57638,10 +21317,10 @@ }, "func": { "arg": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57652,10 +21331,10 @@ }, "body": { "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -57668,10 +21347,10 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -57682,9 +21361,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57700,9 +21379,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57718,10 +21397,10 @@ "first": { "arg": { "arg": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -57735,9 +21414,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57752,10 +21431,10 @@ "priority": 4 }, "func": { - "name": "a", - "highlightType": "betaReduceCallArgHighlighted", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57769,10 +21448,10 @@ "priority": 3 }, "second": { - "name": "e", - "highlightType": "betaReduceCallArgHighlighted", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -57796,596 +21475,256 @@ }, "type": "function" }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "c", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { + "func": { "arg": { - "name": "d", - "highlightType": "active", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [], + "funcPriorityAgg": [ + 2, + 3 + ], "emphasizePriority": false, "bound": false }, "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "arg": { "arg": { - "name": "d", - "highlightType": "active", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "shorthandFunc", - "highlightType": "active", + "name": "b", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "priority": 2 }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 2 + "priority": 4 }, "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", "type": "call", - "priority": 1 + "priority": 3 }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3, - 4 + 5 ], "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 + "bound": true }, - "type": "function" + "state": "default", + "priority": 5 }, - "state": "default", - "type": "call", - "priority": 3 + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true + "type": "function" }, - "state": "default", - "priority": 6 + "type": "function" }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 1 }, "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 2 }, - "state": "betaReducePreviewAfter", + "state": "default", "type": "call", - "priority": 1 + "priority": 3 }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "arg": { + "second": { "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 8, - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "arg": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 8, + 9 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 }, "func": { "name": "shorthandFunc", @@ -58395,7 +21734,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 9 + 8, + 7 ], "emphasizePriority": false, "bound": true, @@ -58403,29 +21743,12 @@ }, "state": "default", "type": "call", - "priority": 9 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8, - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 8 }, "state": "default", - "type": "call", - "priority": 8 + "priority": 7 }, - "state": "default", - "priority": 7 + "priority": 1 }, "second": { "arg": { @@ -58480,12 +21803,11 @@ }, "state": "default", "priority": 12 - }, - "activePriority": 1 + } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "previouslyChangedExpressionState": "conditionActive", "expression": { "type": "binary", "binaryType": "multiply", @@ -58493,31 +21815,80 @@ "type": "binary", "binaryType": "multiply", "first": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "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 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "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 + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 6 }, "func": { "name": "shorthandFunc", @@ -58527,7 +21898,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 5 ], "emphasizePriority": false, "bound": true, @@ -58535,7 +21906,7 @@ }, "state": "default", "type": "call", - "priority": 6 + "priority": 5 }, "func": { "name": "shorthandFunc", @@ -58545,7 +21916,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 4 ], "emphasizePriority": false, "bound": true, @@ -58553,50 +21924,30 @@ }, "state": "default", "type": "call", - "priority": 5 + "priority": 4 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "arg": { "arg": { "arg": { "name": "b", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, 2 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": false }, "body": { "arg": { "arg": { "name": "b", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -58608,9 +21959,9 @@ }, "func": { "name": "b", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58625,10 +21976,10 @@ }, "func": { "arg": { - "name": "a", - "highlightType": "removed", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58639,10 +21990,10 @@ }, "body": { "arg": { - "name": "e", - "highlightType": "removed", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -58655,10 +22006,10 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", - "highlightType": "removed", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -58669,9 +22020,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58687,9 +22038,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58705,10 +22056,10 @@ "first": { "arg": { "arg": { - "name": "e", - "highlightType": "removed", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -58722,9 +22073,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58739,10 +22090,10 @@ "priority": 4 }, "func": { - "name": "a", - "highlightType": "removed", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58756,10 +22107,10 @@ "priority": 3 }, "second": { - "name": "e", - "highlightType": "removed", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58786,13 +22137,14 @@ "func": { "arg": { "name": "b", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 2, + 3 ], "emphasizePriority": false, "bound": false @@ -58801,9 +22153,9 @@ "arg": { "arg": { "name": "b", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1, @@ -58815,9 +22167,9 @@ }, "func": { "name": "b", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58832,10 +22184,10 @@ }, "func": { "arg": { - "name": "a", - "highlightType": "removed", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58846,10 +22198,10 @@ }, "body": { "arg": { - "name": "e", - "highlightType": "removed", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [], @@ -58862,10 +22214,10 @@ "checkType": "isZero", "condition": { "arg": { - "name": "e", - "highlightType": "removed", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 1 @@ -58876,9 +22228,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58894,9 +22246,9 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58912,10 +22264,10 @@ "first": { "arg": { "arg": { - "name": "e", - "highlightType": "removed", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 2, @@ -58929,9 +22281,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58946,10 +22298,10 @@ "priority": 4 }, "func": { - "name": "a", - "highlightType": "removed", + "name": "c", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58963,10 +22315,10 @@ "priority": 3 }, "second": { - "name": "e", - "highlightType": "removed", + "name": "d", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -58994,592 +22346,44 @@ "type": "call", "priority": 2 }, - "func": { + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "arg": { "arg": { - "name": "c", - "highlightType": "removed", + "name": "shorthandNumber", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 3 + "argPriorityAgg": [ + 8, + 9 ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 6 - }, - "priority": 2 - }, - "type": "function" + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 4 }, - "type": "function" - }, - "state": "betaReducePreviewCrossed", - "type": "call", - "priority": 1 - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 8, - 9 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 9 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 9 }, "func": { "name": "shorthandFunc", @@ -59589,7 +22393,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 9 + 8, + 7 ], "emphasizePriority": false, "bound": true, @@ -59597,29 +22402,12 @@ }, "state": "default", "type": "call", - "priority": 9 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8, - 7 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 8 }, "state": "default", - "type": "call", - "priority": 8 + "priority": 7 }, - "state": "default", - "priority": 7 + "priority": 1 }, "second": { "arg": { @@ -59700,13 +22488,13 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 10, - 8, - 5, - 1, + 11, + 9, + 6, 2, 3, - 4 + 4, + 5 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -59721,7 +22509,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 5 ], "emphasizePriority": false, "bound": true, @@ -59729,7 +22517,7 @@ }, "state": "default", "type": "call", - "priority": 4 + "priority": 5 }, "func": { "name": "shorthandFunc", @@ -59739,7 +22527,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, "bound": true, @@ -59747,7 +22535,7 @@ }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, "func": { "name": "shorthandFunc", @@ -59757,7 +22545,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, "bound": true, @@ -59765,558 +22553,431 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 }, "func": { "arg": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", + "arg": { + "name": "b", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 + "argPriorityAgg": [ + 1 ], + "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": false }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { "name": "d", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], + "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": false }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 3 + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 ], - "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "b", + "name": "c", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", "priority": 1 }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", + "trueCase": { + "name": "shorthandNumber", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3, - 4 + 2 ], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "b", + "name": "c", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", - "type": "call", - "priority": 1 + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 3 + "type": "function" }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "d", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true + "type": "function" }, "state": "default", - "priority": 6 + "type": "call", + "priority": 1 }, - "priority": 2 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, "state": "default", "type": "call", - "priority": 1 + "priority": 2 }, "second": { "arg": { @@ -60327,8 +22988,8 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 6, - 7 + 7, + 8 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -60343,7 +23004,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 8 ], "emphasizePriority": false, "bound": true, @@ -60351,7 +23012,7 @@ }, "state": "default", "type": "call", - "priority": 7 + "priority": 8 }, "func": { "name": "shorthandFunc", @@ -60361,8 +23022,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6, - 5 + 7, + 6 ], "emphasizePriority": false, "bound": true, @@ -60370,10 +23031,10 @@ }, "state": "default", "type": "call", - "priority": 6 + "priority": 7 }, "state": "default", - "priority": 5 + "priority": 6 }, "second": { "arg": { @@ -60383,7 +23044,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 9 + 10 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -60398,8 +23059,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 9, - 8 + 10, + 9 ], "emphasizePriority": false, "bound": true, @@ -60407,10 +23068,10 @@ }, "state": "default", "type": "call", - "priority": 9 + "priority": 10 }, "state": "default", - "priority": 8 + "priority": 9 }, "second": { "name": "shorthandNumber", @@ -60420,19 +23081,19 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10 + 11 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 10 + "priority": 11 } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -60448,33 +23109,33 @@ "arg": { "arg": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 10, - 8, - 5, - 1, + 11, + 9, + 6, 2, 3, - 4 + 4, + 5 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 5 ], "emphasizePriority": false, "bound": true, @@ -60482,17 +23143,17 @@ }, "state": "default", "type": "call", - "priority": 4 + "priority": 5 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, "bound": true, @@ -60500,17 +23161,17 @@ }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, "bound": true, @@ -60518,558 +23179,431 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 }, "func": { "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", + "arg": { + "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 + "argPriorityAgg": [ + 1 ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { "name": "d", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 6, - 4, - 5 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], + "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": false }, - "state": "default", - "type": "call", - "priority": 5 - }, - "func": { - "arg": { - "arg": { - "name": "b", + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 3 + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 ], - "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, "func": { - "name": "b", + "name": "c", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, "bound": true }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 2 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 }, "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", "priority": 1 }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", + "trueCase": { + "name": "shorthandNumber", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3, - 4 + 2 ], "emphasizePriority": false, - "bound": false + "bound": true, + "shorthandNumber": 1 }, - "body": { - "arg": { + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", + "func": { + "name": "c", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 3 ], "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" + "bound": true }, - "type": "function" + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", - "type": "call", - "priority": 1 + "priority": 5 }, - "type": "function" + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 3 + "type": "function" }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true + "type": "function" }, "state": "default", - "priority": 6 + "type": "call", + "priority": 1 }, - "priority": 2 + "type": "function" }, - "type": "function" + "state": "active", + "type": "call", + "priority": 1 }, - "state": "showFuncUnbound", + "state": "default", "type": "call", - "priority": 1 + "priority": 2 }, "second": { "arg": { @@ -61080,8 +23614,8 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 6, - 7 + 7, + 8 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -61096,7 +23630,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 8 ], "emphasizePriority": false, "bound": true, @@ -61104,7 +23638,7 @@ }, "state": "default", "type": "call", - "priority": 7 + "priority": 8 }, "func": { "name": "shorthandFunc", @@ -61114,8 +23648,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6, - 5 + 7, + 6 ], "emphasizePriority": false, "bound": true, @@ -61123,10 +23657,10 @@ }, "state": "default", "type": "call", - "priority": 6 + "priority": 7 }, "state": "default", - "priority": 5 + "priority": 6 }, "second": { "arg": { @@ -61136,7 +23670,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 9 + 10 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -61151,8 +23685,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 9, - 8 + 10, + 9 ], "emphasizePriority": false, "bound": true, @@ -61160,10 +23694,10 @@ }, "state": "default", "type": "call", - "priority": 9 + "priority": 10 }, "state": "default", - "priority": 8 + "priority": 9 }, "second": { "name": "shorthandNumber", @@ -61173,20 +23707,20 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10 + 11 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 10 + "priority": 11 }, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -61202,33 +23736,33 @@ "arg": { "arg": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ + 12, 10, - 8, - 5, - 1, - 2, + 7, 3, - 4 + 4, + 5, + 6 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 6 ], "emphasizePriority": false, "bound": true, @@ -61236,17 +23770,17 @@ }, "state": "default", "type": "call", - "priority": 4 + "priority": 6 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true, @@ -61254,17 +23788,17 @@ }, "state": "default", "type": "call", - "priority": 3 + "priority": 5 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4 ], "emphasizePriority": false, "bound": true, @@ -61272,558 +23806,591 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 4 }, "func": { "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "arg": { "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": false }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true + }, + "func": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "type": "function" }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { + "func": { + "arg": { + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { "arg": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 2, - 6, - 4, - 5 + 1, + 2 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "name": "b", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 5 + "priority": 2 }, "func": { "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "name": "b", - "highlightType": "active", + "name": "e", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 3 - ], + "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 1 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 2 + "priority": 1 }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "arg": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 + "shorthandFunc": "pred" }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 4 }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3, - 4 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "func": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 }, - "func": { - "name": "b", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", + "second": { + "name": "e", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 5 ], "emphasizePriority": false, "bound": true }, "state": "default", - "type": "call", - "priority": 2 + "priority": 5 }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "highlighted", - "topLeftBadgeType": "unmatch", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 1 + "priority": 4 }, - "type": "function" + "func": { + "name": "c", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", - "type": "call", - "priority": 3 + "priority": 5 }, - "state": "default", - "type": "call", - "priority": 4 - }, - "second": { - "name": "d", - "highlightType": "highlighted", - "topLeftBadgeType": "match", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6 - ], - "emphasizePriority": false, - "bound": true + "priority": 2 }, - "state": "default", - "priority": 6 + "type": "function" }, - "priority": 2 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, - "state": "betaReducePreviewBefore", + "state": "default", "type": "call", - "priority": 1 + "priority": 3 }, "second": { "arg": { @@ -61834,8 +24401,8 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 6, - 7 + 8, + 9 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -61850,7 +24417,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 9 ], "emphasizePriority": false, "bound": true, @@ -61858,7 +24425,7 @@ }, "state": "default", "type": "call", - "priority": 7 + "priority": 9 }, "func": { "name": "shorthandFunc", @@ -61868,8 +24435,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6, - 5 + 8, + 7 ], "emphasizePriority": false, "bound": true, @@ -61877,10 +24444,10 @@ }, "state": "default", "type": "call", - "priority": 6 + "priority": 8 }, "state": "default", - "priority": 5 + "priority": 7 }, "second": { "arg": { @@ -61890,7 +24457,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 9 + 11 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -61905,8 +24472,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 9, - 8 + 11, + 10 ], "emphasizePriority": false, "bound": true, @@ -61914,10 +24481,10 @@ }, "state": "default", "type": "call", - "priority": 9 + "priority": 11 }, "state": "default", - "priority": 8 + "priority": 10 }, "second": { "name": "shorthandNumber", @@ -61927,21 +24494,19 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10 + 12 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 10 - }, - "matchExists": true, - "activePriority": 1 + "priority": 12 + } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -61957,33 +24522,33 @@ "arg": { "arg": { "name": "shorthandNumber", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ + 12, 10, - 8, - 5, - 1, - 2, + 7, 3, - 4 + 4, + 5, + 6 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 6 ], "emphasizePriority": false, "bound": true, @@ -61991,17 +24556,17 @@ }, "state": "default", "type": "call", - "priority": 4 + "priority": 6 }, "func": { "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 5 ], "emphasizePriority": false, "bound": true, @@ -62009,17 +24574,17 @@ }, "state": "default", "type": "call", - "priority": 3 + "priority": 5 }, "func": { "name": "shorthandFunc", - "highlightType": "betaReduceCallArgHighlighted", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4 ], "emphasizePriority": false, "bound": true, @@ -62027,170 +24592,111 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 4 }, "func": { "arg": { - "name": "d", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": true, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "arg": { "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": false + }, + "body": { "arg": { "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 3 + "priority": 2 }, "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { "arg": { - "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 5, - 12, - 7, - 8, - 9, - 10, - 11 + 1 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "bound": true }, "func": { "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11 + 1 ], "emphasizePriority": false, "bound": true, @@ -62198,570 +24704,479 @@ }, "state": "default", "type": "call", - "priority": 11 + "priority": 1 }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10 + 2 ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 10 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 }, - "state": "default", - "type": "call", - "priority": 9 + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "func": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { - "name": "shorthandFunc", + "name": "b", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 2 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false }, - "state": "default", - "type": "call", - "priority": 8 - }, - "func": { - "arg": { + "body": { "arg": { - "name": "b", + "name": "e", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", + "bottomRightBadgeType": "none", "type": "variable", - "argPriorityAgg": [ - 6 - ], + "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, "bound": false }, "body": { - "arg": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { - "name": "b", + "name": "e", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 1 ], "funcPriorityAgg": [], "emphasizePriority": false, "bound": true }, "func": { - "name": "b", + "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 2 + "priority": 1 }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 5, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "shorthandFunc", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 4 ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 + "shorthandFunc": "pred" }, - "priority": 2 + "state": "default", + "type": "call", + "priority": 4 }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6, - 7 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 }, - "func": { - "name": "b", + "second": { + "name": "e", "highlightType": "active", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 5 ], "emphasizePriority": false, "bound": true }, "state": "default", - "type": "call", - "priority": 2 + "priority": 5 }, - "func": { - "arg": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcUnbound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 - }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { - "arg": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 2, - 5, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "a", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1, + 3 + ], + "emphasizePriority": true, + "bound": false + }, + "body": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" }, "state": "default", "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "second": { - "arg": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [ - 13, - 14, - 15 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 + "priority": 4 }, "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "name": "c", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 15 + 3 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", "type": "call", - "priority": 15 + "priority": 3 }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", + "second": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 14 + 5 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", - "type": "call", - "priority": 14 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "highlighted", - "topLeftBadgeType": "betaReduced", - "bottomRightBadgeType": "funcBound", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 13, - 12 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 5 }, - "state": "default", - "type": "call", - "priority": 13 + "priority": 2 }, - "state": "default", - "priority": 12 + "type": "function" }, - "priority": 5 + "type": "function" }, - "type": "function" + "state": "active", + "type": "call", + "priority": 1 }, - "state": "betaReducePreviewAfter", + "state": "default", "type": "call", - "priority": 1 + "priority": 3 }, "second": { "arg": { @@ -62772,8 +25187,8 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 6, - 7 + 8, + 9 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -62788,7 +25203,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 9 ], "emphasizePriority": false, "bound": true, @@ -62796,7 +25211,7 @@ }, "state": "default", "type": "call", - "priority": 7 + "priority": 9 }, "func": { "name": "shorthandFunc", @@ -62806,8 +25221,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6, - 5 + 8, + 7 ], "emphasizePriority": false, "bound": true, @@ -62815,10 +25230,10 @@ }, "state": "default", "type": "call", - "priority": 6 + "priority": 8 }, "state": "default", - "priority": 5 + "priority": 7 }, "second": { "arg": { @@ -62828,7 +25243,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 9 + 11 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -62843,8 +25258,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 9, - 8 + 11, + 10 ], "emphasizePriority": false, "bound": true, @@ -62852,10 +25267,10 @@ }, "state": "default", "type": "call", - "priority": 9 + "priority": 11 }, "state": "default", - "priority": 8 + "priority": 10 }, "second": { "name": "shorthandNumber", @@ -62865,20 +25280,20 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10 + 12 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 10 + "priority": 12 }, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -62894,9 +25309,9 @@ "arg": { "arg": { "name": "shorthandNumber", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ 10, @@ -62908,15 +25323,15 @@ 4 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -62932,9 +25347,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -62950,9 +25365,9 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "callArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ @@ -62969,15 +25384,15 @@ "func": { "arg": { "name": "d", - "highlightType": "removed", + "highlightType": "default", "topLeftBadgeType": "none", - "bottomRightBadgeType": "funcArg", + "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ 1 ], - "emphasizePriority": true, + "emphasizePriority": false, "bound": false }, "body": { @@ -62986,82 +25401,21 @@ "checkType": "isZero", "condition": { "arg": { - "arg": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2, - 3, - 4 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 3 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 3 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 2 + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63079,13 +25433,13 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 2 ], "emphasizePriority": false, "bound": true, @@ -63097,91 +25451,30 @@ "first": { "arg": { "arg": { - "arg": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 5, - 12, - 7, - 8, - 9, - 10, - 11 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 11 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 10 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 10 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 5 ], "emphasizePriority": false, "bound": true, @@ -63189,18 +25482,18 @@ }, "state": "default", "type": "call", - "priority": 8 + "priority": 5 }, "func": { "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 6 + 3 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -63210,7 +25503,7 @@ "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63224,7 +25517,7 @@ }, "func": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63242,7 +25535,7 @@ "func": { "arg": { "name": "a", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63256,7 +25549,7 @@ "body": { "arg": { "name": "e", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63272,7 +25565,7 @@ "condition": { "arg": { "name": "e", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63285,7 +25578,7 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63303,7 +25596,7 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63322,7 +25615,7 @@ "arg": { "arg": { "name": "e", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63338,7 +25631,7 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63356,7 +25649,7 @@ }, "func": { "name": "a", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63373,7 +25666,7 @@ }, "second": { "name": "e", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63402,14 +25695,14 @@ "func": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6, - 7 + 3, + 4 ], "emphasizePriority": false, "bound": false @@ -63418,7 +25711,7 @@ "arg": { "arg": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63432,7 +25725,7 @@ }, "func": { "name": "b", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63450,7 +25743,7 @@ "func": { "arg": { "name": "a", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63464,7 +25757,7 @@ "body": { "arg": { "name": "e", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63480,7 +25773,7 @@ "condition": { "arg": { "name": "e", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63493,7 +25786,7 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63511,7 +25804,7 @@ }, "trueCase": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63530,7 +25823,7 @@ "arg": { "arg": { "name": "e", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63546,7 +25839,7 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63564,7 +25857,7 @@ }, "func": { "name": "a", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63581,7 +25874,7 @@ }, "second": { "name": "e", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -63609,94 +25902,33 @@ }, "state": "default", "type": "call", - "priority": 6 + "priority": 3 }, "state": "default", "type": "call", - "priority": 7 + "priority": 4 }, "second": { - "arg": { - "arg": { - "arg": { - "name": "shorthandNumber", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 13, - 14, - 15 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 4 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 15 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 15 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 14 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 14 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "active", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 13, - 12 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 13 + "name": "d", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 6 + ], + "emphasizePriority": false, + "bound": true }, "state": "default", - "priority": 12 + "priority": 6 }, - "priority": 5 + "priority": 2 }, "type": "function" }, - "state": "betaReducePreviewCrossed", + "state": "default", "type": "call", "priority": 1 }, @@ -63810,12 +26042,11 @@ }, "state": "default", "priority": 10 - }, - "activePriority": 1 + } }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -63826,57 +26057,38 @@ "type": "binary", "binaryType": "multiply", "first": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "arg": { "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 4 + "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 }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, "bound": true, @@ -63884,17 +26096,17 @@ }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, "bound": true, @@ -63902,17 +26114,17 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, @@ -63920,80 +26132,102 @@ }, "state": "default", "type": "call", - "priority": 1 - }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "priority": 2 }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "func": { + "arg": { + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": false + }, + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 1 + }, + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": false, + "bound": true, + "shorthandNumber": 1 + }, + "falseCase": { + "type": "binary", + "binaryType": "multiply", + "first": { "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 11 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 11 + "name": "d", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 2, + 6, + 4, + 5 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10 + 5 ], "emphasizePriority": false, "bound": true, @@ -64001,157 +26235,42 @@ }, "state": "default", "type": "call", - "priority": 10 + "priority": 5 }, "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 9 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 9 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 8 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 8 - }, - "func": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 6 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "body": { "arg": { "arg": { "name": "b", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1, - 2 + 3 ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "type": "call", - "priority": 2 - }, - "func": { - "arg": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, "bound": false }, "body": { "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", + "func": { + "name": "b", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -64160,25 +26279,51 @@ 2 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": true }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { "name": "e", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 2, - 5, - 3, - 4 + 1 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -64186,13 +26331,13 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 1 ], "emphasizePriority": false, "bound": true, @@ -64200,166 +26345,140 @@ }, "state": "default", "type": "call", - "priority": 4 + "priority": 1 }, - "func": { - "name": "a", - "highlightType": "default", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true - }, - "state": "default", - "priority": 5 - }, - "priority": 2 - }, - "type": "function" - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 1 - }, - "type": "function" - }, - "func": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 6, - 7 - ], - "emphasizePriority": false, - "bound": false - }, - "body": { - "arg": { - "arg": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true - }, - "func": { - "name": "b", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 + }, + "type": "function" + }, + "type": "function" + }, + "state": "default", + "type": "call", + "priority": 1 }, - "state": "default", - "type": "call", - "priority": 2 + "type": "function" }, "func": { "arg": { - "name": "a", - "highlightType": "default", + "name": "b", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 3, + 4 ], "emphasizePriority": false, "bound": false }, "body": { "arg": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": false - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" - }, - "state": "default", - "type": "call", - "priority": 1 + "arg": { + "name": "b", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": true }, - "trueCase": { - "name": "shorthandNumber", - "highlightType": "default", + "func": { + "name": "b", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -64368,25 +26487,51 @@ 2 ], "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "bound": true }, - "falseCase": { - "type": "binary", - "binaryType": "multiply", - "first": { - "arg": { + "state": "default", + "type": "call", + "priority": 2 + }, + "func": { + "arg": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": false, + "bound": false + }, + "body": { + "arg": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [], + "emphasizePriority": false, + "bound": false + }, + "body": { + "type": "conditional", + "state": "default", + "checkType": "isZero", + "condition": { "arg": { "name": "e", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 2, - 5, - 3, - 4 + 1 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -64394,13 +26539,13 @@ }, "func": { "name": "shorthandFunc", - "highlightType": "default", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 1 ], "emphasizePriority": false, "bound": true, @@ -64408,139 +26553,137 @@ }, "state": "default", "type": "call", - "priority": 4 + "priority": 1 }, - "func": { - "name": "a", - "highlightType": "default", + "trueCase": { + "name": "shorthandNumber", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "shorthandNumber": 1 }, - "state": "default", - "type": "call", - "priority": 3 - }, - "second": { - "name": "e", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 5 - ], - "emphasizePriority": false, - "bound": true + "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 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": false, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "default", + "type": "call", + "priority": 4 + }, + "func": { + "name": "a", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "type": "call", + "priority": 3 + }, + "second": { + "name": "e", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 5 + ], + "emphasizePriority": false, + "bound": true + }, + "state": "default", + "priority": 5 + }, + "priority": 2 }, - "state": "default", - "priority": 5 + "type": "function" }, - "priority": 2 + "type": "function" }, - "type": "function" + "state": "default", + "type": "call", + "priority": 1 }, "type": "function" }, "state": "default", "type": "call", - "priority": 1 - }, - "type": "function" - }, - "state": "default", - "type": "call", - "priority": 6 - }, - "state": "default", - "type": "call", - "priority": 7 - }, - "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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 15 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 3 }, "state": "default", "type": "call", - "priority": 15 + "priority": 4 }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", + "second": { + "name": "d", + "highlightType": "active", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 14 + 6 ], "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "bound": true }, "state": "default", - "type": "call", - "priority": 14 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 13, - 12 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "pred" + "priority": 6 }, - "state": "default", - "type": "call", - "priority": 13 + "priority": 2 }, - "state": "default", - "priority": 12 + "type": "function" }, - "priority": 5 + "state": "active", + "type": "call", + "priority": 1 }, "second": { "arg": { @@ -64551,8 +26694,8 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 17, - 18 + 6, + 7 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -64567,7 +26710,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 18 + 7 ], "emphasizePriority": false, "bound": true, @@ -64575,7 +26718,7 @@ }, "state": "default", "type": "call", - "priority": 18 + "priority": 7 }, "func": { "name": "shorthandFunc", @@ -64585,8 +26728,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 17, - 16 + 6, + 5 ], "emphasizePriority": false, "bound": true, @@ -64594,10 +26737,10 @@ }, "state": "default", "type": "call", - "priority": 17 + "priority": 6 }, "state": "default", - "priority": 16 + "priority": 5 }, "second": { "arg": { @@ -64607,7 +26750,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 20 + 9 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -64622,8 +26765,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 20, - 19 + 9, + 8 ], "emphasizePriority": false, "bound": true, @@ -64631,10 +26774,10 @@ }, "state": "default", "type": "call", - "priority": 20 + "priority": 9 }, "state": "default", - "priority": 19 + "priority": 8 }, "second": { "name": "shorthandNumber", @@ -64644,19 +26787,20 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 21 + 10 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 21 - } + "priority": 10 + }, + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -64676,7 +26820,7 @@ "arg": { "arg": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -64687,13 +26831,13 @@ 4 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -64701,11 +26845,11 @@ "funcPriorityAgg": [ 4 ], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandFunc": "pred" }, - "state": "active", + "state": "default", "type": "call", "priority": 4 }, @@ -65493,12 +27637,11 @@ }, "state": "default", "priority": 21 - }, - "activePriority": 4 + } }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -65516,20 +27659,40 @@ "arg": { "arg": { "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2, - 3 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 3 + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3, + 4 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 4 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 4 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 4 }, "func": { "name": "shorthandFunc", @@ -65593,7 +27756,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 5 ], "emphasizePriority": false, "bound": true, @@ -65614,16 +27777,16 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 20, - 18, - 15, - 4, - 11, - 6, + 21, + 19, + 16, + 5, + 12, 7, 8, 9, - 10 + 10, + 11 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -65638,7 +27801,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10 + 11 ], "emphasizePriority": false, "bound": true, @@ -65646,7 +27809,7 @@ }, "state": "default", "type": "call", - "priority": 10 + "priority": 11 }, "func": { "name": "shorthandFunc", @@ -65656,7 +27819,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 9 + 10 ], "emphasizePriority": false, "bound": true, @@ -65664,7 +27827,7 @@ }, "state": "default", "type": "call", - "priority": 9 + "priority": 10 }, "func": { "name": "shorthandFunc", @@ -65674,7 +27837,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 9 ], "emphasizePriority": false, "bound": true, @@ -65682,7 +27845,7 @@ }, "state": "default", "type": "call", - "priority": 8 + "priority": 9 }, "func": { "name": "shorthandFunc", @@ -65692,7 +27855,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 8 ], "emphasizePriority": false, "bound": true, @@ -65700,7 +27863,7 @@ }, "state": "default", "type": "call", - "priority": 7 + "priority": 8 }, "func": { "arg": { @@ -65711,7 +27874,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 5 + 6 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -65919,8 +28082,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5, - 6 + 6, + 7 ], "emphasizePriority": false, "bound": false @@ -66120,11 +28283,11 @@ }, "state": "default", "type": "call", - "priority": 5 + "priority": 6 }, "state": "default", "type": "call", - "priority": 6 + "priority": 7 }, "second": { "arg": { @@ -66136,9 +28299,9 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 12, 13, - 14 + 14, + 15 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -66153,7 +28316,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 14 + 15 ], "emphasizePriority": false, "bound": true, @@ -66161,7 +28324,7 @@ }, "state": "default", "type": "call", - "priority": 14 + "priority": 15 }, "func": { "name": "shorthandFunc", @@ -66171,7 +28334,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 13 + 14 ], "emphasizePriority": false, "bound": true, @@ -66179,7 +28342,7 @@ }, "state": "default", "type": "call", - "priority": 13 + "priority": 14 }, "func": { "name": "shorthandFunc", @@ -66189,8 +28352,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 12, - 11 + 13, + 12 ], "emphasizePriority": false, "bound": true, @@ -66198,12 +28361,12 @@ }, "state": "default", "type": "call", - "priority": 12 + "priority": 13 }, "state": "default", - "priority": 11 + "priority": 12 }, - "priority": 4 + "priority": 5 }, "second": { "arg": { @@ -66214,8 +28377,8 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 16, - 17 + 17, + 18 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -66230,7 +28393,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 17 + 18 ], "emphasizePriority": false, "bound": true, @@ -66238,7 +28401,7 @@ }, "state": "default", "type": "call", - "priority": 17 + "priority": 18 }, "func": { "name": "shorthandFunc", @@ -66248,8 +28411,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 16, - 15 + 17, + 16 ], "emphasizePriority": false, "bound": true, @@ -66257,10 +28420,10 @@ }, "state": "default", "type": "call", - "priority": 16 + "priority": 17 }, "state": "default", - "priority": 15 + "priority": 16 }, "second": { "arg": { @@ -66270,7 +28433,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 19 + 20 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -66285,8 +28448,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 19, - 18 + 20, + 19 ], "emphasizePriority": false, "bound": true, @@ -66294,10 +28457,10 @@ }, "state": "default", "type": "call", - "priority": 19 + "priority": 20 }, "state": "default", - "priority": 18 + "priority": 19 }, "second": { "name": "shorthandNumber", @@ -66307,19 +28470,20 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 20 + 21 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 20 - } + "priority": 21 + }, + "activePriority": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -66338,7 +28502,7 @@ "arg": { "arg": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -66348,13 +28512,13 @@ 3 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandNumber": 3 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -66362,11 +28526,11 @@ "funcPriorityAgg": [ 3 ], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandFunc": "pred" }, - "state": "active", + "state": "default", "type": "call", "priority": 3 }, @@ -67136,12 +29300,11 @@ }, "state": "default", "priority": 20 - }, - "activePriority": 3 + } }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -67158,19 +29321,39 @@ "condition": { "arg": { "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 2 + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2, + 3 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 3 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 3 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 3 }, "func": { "name": "shorthandFunc", @@ -67216,7 +29399,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3 + 4 ], "emphasizePriority": false, "bound": true, @@ -67237,16 +29420,16 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 19, - 17, - 14, - 3, - 10, - 5, + 20, + 18, + 15, + 4, + 11, 6, 7, 8, - 9 + 9, + 10 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -67261,7 +29444,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 9 + 10 ], "emphasizePriority": false, "bound": true, @@ -67269,7 +29452,7 @@ }, "state": "default", "type": "call", - "priority": 9 + "priority": 10 }, "func": { "name": "shorthandFunc", @@ -67279,7 +29462,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 9 ], "emphasizePriority": false, "bound": true, @@ -67287,7 +29470,7 @@ }, "state": "default", "type": "call", - "priority": 8 + "priority": 9 }, "func": { "name": "shorthandFunc", @@ -67297,7 +29480,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 8 ], "emphasizePriority": false, "bound": true, @@ -67305,7 +29488,7 @@ }, "state": "default", "type": "call", - "priority": 7 + "priority": 8 }, "func": { "name": "shorthandFunc", @@ -67315,7 +29498,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 7 ], "emphasizePriority": false, "bound": true, @@ -67323,7 +29506,7 @@ }, "state": "default", "type": "call", - "priority": 6 + "priority": 7 }, "func": { "arg": { @@ -67334,7 +29517,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 4 + 5 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -67542,8 +29725,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4, - 5 + 5, + 6 ], "emphasizePriority": false, "bound": false @@ -67743,11 +29926,11 @@ }, "state": "default", "type": "call", - "priority": 4 + "priority": 5 }, "state": "default", "type": "call", - "priority": 5 + "priority": 6 }, "second": { "arg": { @@ -67759,9 +29942,9 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 11, 12, - 13 + 13, + 14 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -67776,7 +29959,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 13 + 14 ], "emphasizePriority": false, "bound": true, @@ -67784,7 +29967,7 @@ }, "state": "default", "type": "call", - "priority": 13 + "priority": 14 }, "func": { "name": "shorthandFunc", @@ -67794,7 +29977,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 12 + 13 ], "emphasizePriority": false, "bound": true, @@ -67802,7 +29985,7 @@ }, "state": "default", "type": "call", - "priority": 12 + "priority": 13 }, "func": { "name": "shorthandFunc", @@ -67812,8 +29995,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11, - 10 + 12, + 11 ], "emphasizePriority": false, "bound": true, @@ -67821,12 +30004,12 @@ }, "state": "default", "type": "call", - "priority": 11 + "priority": 12 }, "state": "default", - "priority": 10 + "priority": 11 }, - "priority": 3 + "priority": 4 }, "second": { "arg": { @@ -67837,8 +30020,8 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 15, - 16 + 16, + 17 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -67853,7 +30036,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 16 + 17 ], "emphasizePriority": false, "bound": true, @@ -67861,7 +30044,7 @@ }, "state": "default", "type": "call", - "priority": 16 + "priority": 17 }, "func": { "name": "shorthandFunc", @@ -67871,8 +30054,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 15, - 14 + 16, + 15 ], "emphasizePriority": false, "bound": true, @@ -67880,10 +30063,10 @@ }, "state": "default", "type": "call", - "priority": 15 + "priority": 16 }, "state": "default", - "priority": 14 + "priority": 15 }, "second": { "arg": { @@ -67893,7 +30076,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 18 + 19 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -67908,8 +30091,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 18, - 17 + 19, + 18 ], "emphasizePriority": false, "bound": true, @@ -67917,10 +30100,10 @@ }, "state": "default", "type": "call", - "priority": 18 + "priority": 19 }, "state": "default", - "priority": 17 + "priority": 18 }, "second": { "name": "shorthandNumber", @@ -67930,19 +30113,20 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 19 + 20 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 19 - } + "priority": 20 + }, + "activePriority": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -67960,7 +30144,7 @@ "arg": { "arg": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -67969,13 +30153,13 @@ 2 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandNumber": 2 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -67983,11 +30167,11 @@ "funcPriorityAgg": [ 2 ], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandFunc": "pred" }, - "state": "active", + "state": "default", "type": "call", "priority": 2 }, @@ -68739,12 +30923,11 @@ }, "state": "default", "priority": 19 - }, - "activePriority": 2 + } }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -68760,18 +30943,38 @@ "checkType": "isZero", "condition": { "arg": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 1 + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1, + 2 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 2 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 2 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 2 }, "func": { "name": "shorthandFunc", @@ -68799,7 +31002,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "emphasizePriority": false, "bound": true, @@ -68820,16 +31023,16 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 18, - 16, - 13, - 2, - 9, - 4, + 19, + 17, + 14, + 3, + 10, 5, 6, 7, - 8 + 8, + 9 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -68844,7 +31047,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 8 + 9 ], "emphasizePriority": false, "bound": true, @@ -68852,7 +31055,7 @@ }, "state": "default", "type": "call", - "priority": 8 + "priority": 9 }, "func": { "name": "shorthandFunc", @@ -68862,7 +31065,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 8 ], "emphasizePriority": false, "bound": true, @@ -68870,7 +31073,7 @@ }, "state": "default", "type": "call", - "priority": 7 + "priority": 8 }, "func": { "name": "shorthandFunc", @@ -68880,7 +31083,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 7 ], "emphasizePriority": false, "bound": true, @@ -68888,7 +31091,7 @@ }, "state": "default", "type": "call", - "priority": 6 + "priority": 7 }, "func": { "name": "shorthandFunc", @@ -68898,7 +31101,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 6 ], "emphasizePriority": false, "bound": true, @@ -68906,7 +31109,7 @@ }, "state": "default", "type": "call", - "priority": 5 + "priority": 6 }, "func": { "arg": { @@ -68917,7 +31120,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 3 + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -69125,8 +31328,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 3, - 4 + 4, + 5 ], "emphasizePriority": false, "bound": false @@ -69326,11 +31529,11 @@ }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, "state": "default", "type": "call", - "priority": 4 + "priority": 5 }, "second": { "arg": { @@ -69342,9 +31545,9 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 10, 11, - 12 + 12, + 13 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -69359,7 +31562,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 12 + 13 ], "emphasizePriority": false, "bound": true, @@ -69367,7 +31570,7 @@ }, "state": "default", "type": "call", - "priority": 12 + "priority": 13 }, "func": { "name": "shorthandFunc", @@ -69377,7 +31580,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11 + 12 ], "emphasizePriority": false, "bound": true, @@ -69385,7 +31588,7 @@ }, "state": "default", "type": "call", - "priority": 11 + "priority": 12 }, "func": { "name": "shorthandFunc", @@ -69395,8 +31598,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10, - 9 + 11, + 10 ], "emphasizePriority": false, "bound": true, @@ -69404,12 +31607,12 @@ }, "state": "default", "type": "call", - "priority": 10 + "priority": 11 }, "state": "default", - "priority": 9 + "priority": 10 }, - "priority": 2 + "priority": 3 }, "second": { "arg": { @@ -69420,8 +31623,8 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 14, - 15 + 15, + 16 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -69436,7 +31639,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 15 + 16 ], "emphasizePriority": false, "bound": true, @@ -69444,7 +31647,7 @@ }, "state": "default", "type": "call", - "priority": 15 + "priority": 16 }, "func": { "name": "shorthandFunc", @@ -69454,8 +31657,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 14, - 13 + 15, + 14 ], "emphasizePriority": false, "bound": true, @@ -69463,10 +31666,10 @@ }, "state": "default", "type": "call", - "priority": 14 + "priority": 15 }, "state": "default", - "priority": 13 + "priority": 14 }, "second": { "arg": { @@ -69476,7 +31679,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 17 + 18 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -69491,8 +31694,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 17, - 16 + 18, + 17 ], "emphasizePriority": false, "bound": true, @@ -69500,10 +31703,10 @@ }, "state": "default", "type": "call", - "priority": 17 + "priority": 18 }, "state": "default", - "priority": 16 + "priority": 17 }, "second": { "name": "shorthandNumber", @@ -69513,19 +31716,20 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 18 + 19 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 18 - } + "priority": 19 + }, + "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -69542,7 +31746,7 @@ "condition": { "arg": { "name": "shorthandNumber", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -69550,13 +31754,13 @@ 1 ], "funcPriorityAgg": [], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandNumber": 1 }, "func": { "name": "shorthandFunc", - "highlightType": "active", + "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", @@ -69564,11 +31768,11 @@ "funcPriorityAgg": [ 1 ], - "emphasizePriority": true, + "emphasizePriority": false, "bound": true, "shorthandFunc": "pred" }, - "state": "active", + "state": "default", "type": "call", "priority": 1 }, @@ -70302,12 +32506,11 @@ }, "state": "default", "priority": 18 - }, - "activePriority": 1 + } }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -70322,16 +32525,37 @@ "state": "default", "checkType": "isZero", "condition": { - "name": "shorthandNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumber": 0 + "arg": { + "name": "shorthandNumber", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [ + 1 + ], + "funcPriorityAgg": [], + "emphasizePriority": true, + "bound": true, + "shorthandNumber": 1 + }, + "func": { + "name": "shorthandFunc", + "highlightType": "active", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "funcPriorityAgg": [ + 1 + ], + "emphasizePriority": true, + "bound": true, + "shorthandFunc": "pred" + }, + "state": "active", + "type": "call", + "priority": 1 }, "trueCase": { "name": "shorthandNumber", @@ -70341,7 +32565,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 2 ], "emphasizePriority": false, "bound": true, @@ -70362,16 +32586,16 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 17, - 15, - 12, - 1, - 8, - 3, + 18, + 16, + 13, + 2, + 9, 4, 5, 6, - 7 + 7, + 8 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -70386,7 +32610,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 7 + 8 ], "emphasizePriority": false, "bound": true, @@ -70394,7 +32618,7 @@ }, "state": "default", "type": "call", - "priority": 7 + "priority": 8 }, "func": { "name": "shorthandFunc", @@ -70404,7 +32628,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 6 + 7 ], "emphasizePriority": false, "bound": true, @@ -70412,7 +32636,7 @@ }, "state": "default", "type": "call", - "priority": 6 + "priority": 7 }, "func": { "name": "shorthandFunc", @@ -70422,7 +32646,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 5 + 6 ], "emphasizePriority": false, "bound": true, @@ -70430,7 +32654,7 @@ }, "state": "default", "type": "call", - "priority": 5 + "priority": 6 }, "func": { "name": "shorthandFunc", @@ -70440,7 +32664,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 4 + 5 ], "emphasizePriority": false, "bound": true, @@ -70448,7 +32672,7 @@ }, "state": "default", "type": "call", - "priority": 4 + "priority": 5 }, "func": { "arg": { @@ -70459,7 +32683,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 2 + 3 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -70667,8 +32891,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2, - 3 + 3, + 4 ], "emphasizePriority": false, "bound": false @@ -70868,11 +33092,11 @@ }, "state": "default", "type": "call", - "priority": 2 + "priority": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 4 }, "second": { "arg": { @@ -70884,9 +33108,9 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 9, 10, - 11 + 11, + 12 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -70901,7 +33125,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 11 + 12 ], "emphasizePriority": false, "bound": true, @@ -70909,7 +33133,7 @@ }, "state": "default", "type": "call", - "priority": 11 + "priority": 12 }, "func": { "name": "shorthandFunc", @@ -70919,7 +33143,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 10 + 11 ], "emphasizePriority": false, "bound": true, @@ -70927,7 +33151,7 @@ }, "state": "default", "type": "call", - "priority": 10 + "priority": 11 }, "func": { "name": "shorthandFunc", @@ -70937,8 +33161,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 9, - 8 + 10, + 9 ], "emphasizePriority": false, "bound": true, @@ -70946,12 +33170,12 @@ }, "state": "default", "type": "call", - "priority": 9 + "priority": 10 }, "state": "default", - "priority": 8 + "priority": 9 }, - "priority": 1 + "priority": 2 }, "second": { "arg": { @@ -70962,8 +33186,8 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 13, - 14 + 14, + 15 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -70978,7 +33202,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 14 + 15 ], "emphasizePriority": false, "bound": true, @@ -70986,7 +33210,7 @@ }, "state": "default", "type": "call", - "priority": 14 + "priority": 15 }, "func": { "name": "shorthandFunc", @@ -70996,8 +33220,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 13, - 12 + 14, + 13 ], "emphasizePriority": false, "bound": true, @@ -71005,10 +33229,10 @@ }, "state": "default", "type": "call", - "priority": 13 + "priority": 14 }, "state": "default", - "priority": 12 + "priority": 13 }, "second": { "arg": { @@ -71018,7 +33242,7 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 16 + 17 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -71033,8 +33257,8 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 16, - 15 + 17, + 16 ], "emphasizePriority": false, "bound": true, @@ -71042,10 +33266,10 @@ }, "state": "default", "type": "call", - "priority": 16 + "priority": 17 }, "state": "default", - "priority": 15 + "priority": 16 }, "second": { "name": "shorthandNumber", @@ -71055,19 +33279,20 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 17 + 18 ], "emphasizePriority": false, "bound": true, "shorthandNumber": 4 }, "state": "default", - "priority": 17 - } + "priority": 18 + }, + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "conditionActive", + "containerState": "ready", + "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -71079,7 +33304,7 @@ "binaryType": "multiply", "first": { "type": "conditional", - "state": "conditionActive", + "state": "default", "checkType": "isZero", "condition": { "name": "shorthandNumber", @@ -71823,12 +34048,11 @@ }, "state": "default", "priority": 17 - }, - "activePriority": 1 + } }, { "containerState": "stepped", - "previouslyChangedExpressionState": "trueCaseActive", + "previouslyChangedExpressionState": "conditionActive", "expression": { "type": "binary", "binaryType": "multiply", @@ -71840,7 +34064,7 @@ "binaryType": "multiply", "first": { "type": "conditional", - "state": "trueCaseActive", + "state": "conditionActive", "checkType": "isZero", "condition": { "name": "shorthandNumber", @@ -73697,5 +35921,5 @@ "highlightOverrides": {}, "highlightOverrideActiveAfterStart": false, "highlightFunctions": false, - "skipActive": true + "showDefaultAndActiveOnly": true } From 18f84b25e82a2b58cf6506a4b1faeb416cf4139a Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 19:00:14 -0700 Subject: [PATCH 11/36] Improve multiplyicon --- src/components/MultiplyIcon.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/MultiplyIcon.tsx b/src/components/MultiplyIcon.tsx index c7821e232..e5407be77 100644 --- a/src/components/MultiplyIcon.tsx +++ b/src/components/MultiplyIcon.tsx @@ -9,11 +9,11 @@ const MultiplyIcon = ({ revert }: { revert?: boolean }) => ( display: inline-flex; align-items: center; justify-content: center; - width: 2em; - height: 2em; - border-radius: ${radii(9999)}; + width: 1.8em; + height: 1.8em; + border-radius: ${radii(0.25)}; color: ${colors(revert ? 'white' : 'indigo300')}; - font-size: 0.6em; + font-size: 0.55em; font-weight: bold; line-height: ${lineHeights(1.3, { ignoreLocale: true })}; border: 2px solid ${colors('indigo300')}; From b368a57b4b2c4fb31462668ad262ec9967bbc256 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sat, 28 Sep 2019 19:01:53 -0700 Subject: [PATCH 12/36] Fix spacing --- src/components/VariableExpressionBox.tsx | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/src/components/VariableExpressionBox.tsx b/src/components/VariableExpressionBox.tsx index a794b2d9d..23043f79d 100644 --- a/src/components/VariableExpressionBox.tsx +++ b/src/components/VariableExpressionBox.tsx @@ -22,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'] ) => ({ @@ -370,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)}; `} > From 5d45d93fe62d46594e195c2934119e53af5b9e50 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 17:50:35 -0700 Subject: [PATCH 13/36] Add calculateNumLeafNodes --- scripts/lib/calculateNumLeafNodes.ts | 34 ++++++++++++++++++++++++++ scripts/lib/stepExpressionContainer.ts | 16 +++++++++--- src/types/ExpressionContainerTypes.ts | 1 + 3 files changed, 47 insertions(+), 4 deletions(-) create mode 100644 scripts/lib/calculateNumLeafNodes.ts diff --git a/scripts/lib/calculateNumLeafNodes.ts b/scripts/lib/calculateNumLeafNodes.ts new file mode 100644 index 000000000..9a64a96cb --- /dev/null +++ b/scripts/lib/calculateNumLeafNodes.ts @@ -0,0 +1,34 @@ +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)) { + 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/stepExpressionContainer.ts b/scripts/lib/stepExpressionContainer.ts index 82ac35455..9e3c369c9 100644 --- a/scripts/lib/stepExpressionContainer.ts +++ b/scripts/lib/stepExpressionContainer.ts @@ -7,6 +7,7 @@ import resetExpressionContainer from 'scripts/lib/resetExpressionContainer' import replaceCallParentKey from 'scripts/lib/replaceCallParentKey' import replaceConditionalParentKey from 'scripts/lib/replaceConditionalParentKey' import replaceBinaryParentKey from 'scripts/lib/replaceBinaryParentKey' +import calculateNumLeafNodes from 'scripts/lib/calculateNumLeafNodes' import { isCall, isConditional, @@ -349,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 } } @@ -392,6 +396,8 @@ const runStep = ( throw new Error() } + const numLeafNodes = calculateNumLeafNodes(newExpression) + if (previouslyChangedExpressionState === 'default') { return { ...e, @@ -399,7 +405,8 @@ const runStep = ( containerState: 'needsReset', matchExists, activePriority, - previouslyChangedExpressionState + previouslyChangedExpressionState, + numLeafNodes } } else { return { @@ -411,7 +418,8 @@ const runStep = ( containerState: 'stepped', matchExists, activePriority, - previouslyChangedExpressionState + previouslyChangedExpressionState, + numLeafNodes } } } diff --git a/src/types/ExpressionContainerTypes.ts b/src/types/ExpressionContainerTypes.ts index 48b8651d6..d06aa0904 100644 --- a/src/types/ExpressionContainerTypes.ts +++ b/src/types/ExpressionContainerTypes.ts @@ -21,6 +21,7 @@ export interface ExpressionContainer { | BinaryStates readonly matchExists?: boolean readonly activePriority?: number + readonly numLeafNodes: number } export type ContainerWithState< From f641ba6c5578eaa28c7bf0e43f23462321d217b4 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 17:56:40 -0700 Subject: [PATCH 14/36] Fix typecheck --- scripts/lib/buildExpressionContainer.ts | 5 ++++- scripts/lib/prioritizeExpressionContainer.ts | 1 + scripts/lib/resetExpressionContainer.ts | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/lib/buildExpressionContainer.ts b/scripts/lib/buildExpressionContainer.ts index 887a4fb36..e8c472614 100644 --- a/scripts/lib/buildExpressionContainer.ts +++ b/scripts/lib/buildExpressionContainer.ts @@ -16,6 +16,7 @@ import { StepBinary, StepVariable } from 'src/types/ExpressionTypes' +import calculateNumLeafNodes from 'scripts/lib/calculateNumLeafNodes' export default function buildExpressionContainer( expressionParams: VariableExpressionParams @@ -38,8 +39,10 @@ export default function buildExpressionContainer( 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/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/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' From e69accd1fbff9882b3068929fcaf2a46a323a644 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 17:57:34 -0700 Subject: [PATCH 15/36] Add numLeafNodes --- src/lib/runners/aaov.json | 12 +- src/lib/runners/abnp.json | 5 +- src/lib/runners/aezk.json | 3 +- src/lib/runners/afoh.json | 5 +- src/lib/runners/akik.json | 99 ++++---- src/lib/runners/akjy.json | 43 ++-- src/lib/runners/aklf.json | 7 +- src/lib/runners/akug.json | 7 +- src/lib/runners/alca.json | 7 +- src/lib/runners/amjx.json | 7 +- src/lib/runners/amoq.json | 15 +- src/lib/runners/anzh.json | 7 +- src/lib/runners/aone.json | 7 +- src/lib/runners/aovj.json | 15 +- src/lib/runners/apuz.json | 10 +- src/lib/runners/auks.json | 7 +- src/lib/runners/avcu.json | 7 +- src/lib/runners/avsl.json | 3 +- src/lib/runners/awbq.json | 7 +- src/lib/runners/awwn.json | 7 +- src/lib/runners/ayok.json | 28 ++- src/lib/runners/ayrl.json | 7 +- src/lib/runners/bdme.json | 3 +- src/lib/runners/beiz.json | 60 +++-- src/lib/runners/bgfl.json | 8 +- src/lib/runners/bgko.json | 7 +- src/lib/runners/bgxi.json | 7 +- src/lib/runners/bhpw.json | 7 +- src/lib/runners/biit.json | 7 +- src/lib/runners/blvt.json | 7 +- src/lib/runners/bndi.json | 7 +- src/lib/runners/bnyo.json | 7 +- src/lib/runners/bras.json | 8 +- src/lib/runners/bwff.json | 8 +- src/lib/runners/bwnp.json | 7 +- src/lib/runners/bxuv.json | 7 +- src/lib/runners/cbmn.json | 7 +- src/lib/runners/cefx.json | 7 +- src/lib/runners/cjxe.json | 7 +- src/lib/runners/cldb.json | 7 +- src/lib/runners/cmla.json | 7 +- src/lib/runners/cowm.json | 7 +- src/lib/runners/cpdy.json | 7 +- src/lib/runners/cpkp.json | 8 +- src/lib/runners/crvj.json | 7 +- src/lib/runners/csqj.json | 20 +- src/lib/runners/cuwg.json | 35 +-- src/lib/runners/cvtc.json | 7 +- src/lib/runners/cyyp.json | 7 +- src/lib/runners/dcji.json | 14 +- src/lib/runners/ddrg.json | 7 +- src/lib/runners/deay.json | 7 +- src/lib/runners/dewi.json | 7 +- src/lib/runners/dfjp.json | 7 +- src/lib/runners/dgpx.json | 7 +- src/lib/runners/dgyc.json | 7 +- src/lib/runners/dhiu.json | 23 +- src/lib/runners/dhzf.json | 7 +- src/lib/runners/diis.json | 28 ++- src/lib/runners/ditw.json | 7 +- src/lib/runners/dkdt.json | 3 +- src/lib/runners/dkiy.json | 7 +- src/lib/runners/dmrz.json | 7 +- src/lib/runners/dogu.json | 7 +- src/lib/runners/dpaw.json | 7 +- src/lib/runners/dqdv.json | 7 +- src/lib/runners/dqey.json | 5 +- src/lib/runners/dqwh.json | 7 +- src/lib/runners/dtzu.json | 3 +- src/lib/runners/dubm.json | 7 +- src/lib/runners/duuk.json | 7 +- src/lib/runners/dvpl.json | 7 +- src/lib/runners/dwmc.json | 145 +++++++----- src/lib/runners/dwzy.json | 7 +- src/lib/runners/dyoq.json | 14 +- src/lib/runners/eagi.json | 15 +- src/lib/runners/ednv.json | 14 +- src/lib/runners/edzu.json | 7 +- src/lib/runners/ehxq.json | 14 +- src/lib/runners/elku.json | 7 +- src/lib/runners/elyq.json | 7 +- src/lib/runners/envj.json | 7 +- src/lib/runners/eozk.json | 7 +- src/lib/runners/epoi.json | 14 +- src/lib/runners/etae.json | 5 +- src/lib/runners/etku.json | 7 +- src/lib/runners/evqx.json | 6 +- src/lib/runners/eweo.json | 7 +- src/lib/runners/ewfr.json | 7 +- src/lib/runners/exbn.json | 99 ++++---- src/lib/runners/ezmz.json | 14 +- src/lib/runners/fclo.json | 7 +- src/lib/runners/fdig.json | 7 +- src/lib/runners/fhkl.json | 14 +- src/lib/runners/fhrd.json | 7 +- src/lib/runners/fkat.json | 7 +- src/lib/runners/fkqu.json | 3 +- src/lib/runners/fkvy.json | 8 +- src/lib/runners/fljg.json | 7 +- src/lib/runners/fogc.json | 8 +- src/lib/runners/fsgq.json | 92 +++++--- src/lib/runners/fton.json | 7 +- src/lib/runners/fxde.json | 7 +- src/lib/runners/fxok.json | 8 +- src/lib/runners/gemh.json | 8 +- src/lib/runners/ggxl.json | 7 +- src/lib/runners/ghwe.json | 7 +- src/lib/runners/glbk.json | 7 +- src/lib/runners/gmgs.json | 7 +- src/lib/runners/gmzn.json | 27 ++- src/lib/runners/gngw.json | 8 +- src/lib/runners/gnwm.json | 7 +- src/lib/runners/gpat.json | 129 ++++++---- src/lib/runners/grla.json | 11 +- src/lib/runners/gtdu.json | 7 +- src/lib/runners/guhy.json | 3 +- src/lib/runners/gvxz.json | 7 +- src/lib/runners/gwtp.json | 6 +- src/lib/runners/hafp.json | 7 +- src/lib/runners/hbbv.json | 8 +- src/lib/runners/hdhy.json | 43 ++-- src/lib/runners/hdxc.json | 58 +++-- src/lib/runners/hehx.json | 7 +- src/lib/runners/hhdu.json | 7 +- src/lib/runners/hhjq.json | 7 +- src/lib/runners/hluq.json | 23 +- src/lib/runners/hnyn.json | 43 ++-- src/lib/runners/htir.json | 15 +- src/lib/runners/hvfb.json | 7 +- src/lib/runners/hvqh.json | 7 +- src/lib/runners/hvqy.json | 3 +- src/lib/runners/hykj.json | 43 ++-- src/lib/runners/iatt.json | 14 +- src/lib/runners/iczf.json | 7 +- src/lib/runners/ifiq.json | 336 +++++++++++++++----------- src/lib/runners/ifpo.json | 7 +- src/lib/runners/igpn.json | 7 +- src/lib/runners/igrl.json | 3 +- src/lib/runners/ilpo.json | 7 +- src/lib/runners/ilvq.json | 7 +- src/lib/runners/immq.json | 7 +- src/lib/runners/imyd.json | 7 +- src/lib/runners/issq.json | 3 +- src/lib/runners/itbm.json | 15 +- src/lib/runners/ivol.json | 8 +- src/lib/runners/iwmu.json | 7 +- src/lib/runners/izgz.json | 37 ++- src/lib/runners/jaqs.json | 7 +- src/lib/runners/jarm.json | 7 +- src/lib/runners/jbam.json | 20 +- src/lib/runners/jbqw.json | 7 +- src/lib/runners/jehv.json | 14 +- src/lib/runners/jguj.json | 7 +- src/lib/runners/jiqb.json | 15 +- src/lib/runners/jiua.json | 7 +- src/lib/runners/jjet.json | 8 +- src/lib/runners/jjjh.json | 14 +- src/lib/runners/jmmp.json | 7 +- src/lib/runners/joaq.json | 7 +- src/lib/runners/jsvg.json | 23 +- src/lib/runners/jtxf.json | 7 +- src/lib/runners/jwah.json | 7 +- src/lib/runners/jwce.json | 7 +- src/lib/runners/jwdn.json | 5 +- src/lib/runners/jwue.json | 8 +- src/lib/runners/jwzh.json | 3 +- src/lib/runners/jxvy.json | 7 +- src/lib/runners/jyqf.json | 7 +- src/lib/runners/kbnn.json | 11 +- src/lib/runners/kdgv.json | 7 +- src/lib/runners/keck.json | 3 +- src/lib/runners/kiiq.json | 7 +- src/lib/runners/kizi.json | 7 +- src/lib/runners/kjba.json | 7 +- src/lib/runners/kmyl.json | 14 +- src/lib/runners/knhw.json | 3 +- src/lib/runners/kosw.json | 7 +- src/lib/runners/kvso.json | 17 +- src/lib/runners/kwyy.json | 3 +- src/lib/runners/kzkg.json | 7 +- src/lib/runners/laea.json | 7 +- src/lib/runners/ldqk.json | 7 +- src/lib/runners/lgiv.json | 31 ++- src/lib/runners/lipt.json | 101 ++++---- src/lib/runners/lizi.json | 7 +- src/lib/runners/loai.json | 7 +- src/lib/runners/ltpe.json | 10 +- src/lib/runners/lwoq.json | 7 +- src/lib/runners/lxgj.json | 7 +- src/lib/runners/lxhc.json | 3 +- src/lib/runners/lxrk.json | 15 +- src/lib/runners/mbje.json | 7 +- src/lib/runners/mcug.json | 15 +- src/lib/runners/mepb.json | 7 +- src/lib/runners/mhgm.json | 3 +- src/lib/runners/mhyv.json | 5 +- src/lib/runners/mibj.json | 7 +- src/lib/runners/mifg.json | 14 +- src/lib/runners/mlnt.json | 7 +- src/lib/runners/mqvu.json | 7 +- src/lib/runners/msiw.json | 6 +- src/lib/runners/msrk.json | 5 +- src/lib/runners/mutg.json | 15 +- src/lib/runners/myjz.json | 28 ++- src/lib/runners/mzqc.json | 7 +- src/lib/runners/mzys.json | 7 +- src/lib/runners/ngxc.json | 8 +- src/lib/runners/nhqo.json | 7 +- src/lib/runners/niwv.json | 3 +- src/lib/runners/nlbn.json | 116 +++++---- src/lib/runners/nlyu.json | 7 +- src/lib/runners/nmbt.json | 7 +- src/lib/runners/nmmz.json | 15 +- src/lib/runners/nmrp.json | 103 ++++---- src/lib/runners/nngz.json | 7 +- src/lib/runners/nntn.json | 3 +- src/lib/runners/nplf.json | 7 +- src/lib/runners/nuco.json | 7 +- src/lib/runners/nvdn.json | 7 +- src/lib/runners/nvqu.json | 7 +- src/lib/runners/oclg.json | 7 +- src/lib/runners/olyw.json | 7 +- src/lib/runners/omwd.json | 7 +- src/lib/runners/oork.json | 5 +- src/lib/runners/ooya.json | 7 +- src/lib/runners/oqpi.json | 99 ++++---- src/lib/runners/osff.json | 5 +- src/lib/runners/osqo.json | 8 +- src/lib/runners/otbe.json | 7 +- src/lib/runners/oukl.json | 5 +- src/lib/runners/ovua.json | 121 ++++++---- src/lib/runners/owpg.json | 7 +- src/lib/runners/oykb.json | 7 +- src/lib/runners/ozbe.json | 6 +- src/lib/runners/ozxi.json | 8 +- src/lib/runners/pbhg.json | 5 +- src/lib/runners/pbop.json | 7 +- src/lib/runners/peiy.json | 7 +- src/lib/runners/pgxb.json | 14 +- src/lib/runners/plbv.json | 7 +- src/lib/runners/plde.json | 7 +- src/lib/runners/pmdm.json | 7 +- src/lib/runners/poha.json | 7 +- src/lib/runners/psyv.json | 7 +- src/lib/runners/qaoa.json | 7 +- src/lib/runners/qcmh.json | 3 +- src/lib/runners/qfbk.json | 3 +- src/lib/runners/qgau.json | 7 +- src/lib/runners/qlcq.json | 3 +- src/lib/runners/qoms.json | 3 +- src/lib/runners/qrfw.json | 7 +- src/lib/runners/qrgc.json | 7 +- src/lib/runners/qsnv.json | 7 +- src/lib/runners/qsoa.json | 7 +- src/lib/runners/qwdg.json | 7 +- src/lib/runners/qxob.json | 10 +- src/lib/runners/qycx.json | 7 +- src/lib/runners/rakk.json | 7 +- src/lib/runners/rbup.json | 7 +- src/lib/runners/rdae.json | 7 +- src/lib/runners/rgta.json | 8 +- src/lib/runners/rhcv.json | 8 +- src/lib/runners/rhoa.json | 7 +- src/lib/runners/rico.json | 7 +- src/lib/runners/rivc.json | 15 +- src/lib/runners/rjfy.json | 3 +- src/lib/runners/rjho.json | 7 +- src/lib/runners/rjzw.json | 116 +++++---- src/lib/runners/rlrs.json | 7 +- src/lib/runners/rnug.json | 7 +- src/lib/runners/roko.json | 7 +- src/lib/runners/rqjo.json | 6 +- src/lib/runners/rtza.json | 7 +- src/lib/runners/ruou.json | 7 +- src/lib/runners/rviy.json | 7 +- src/lib/runners/rwuw.json | 7 +- src/lib/runners/rypq.json | 5 +- src/lib/runners/ryqp.json | 7 +- src/lib/runners/sdta.json | 7 +- src/lib/runners/seie.json | 7 +- src/lib/runners/sgfj.json | 6 +- src/lib/runners/sgnp.json | 3 +- src/lib/runners/skoo.json | 7 +- src/lib/runners/smdm.json | 3 +- src/lib/runners/snlf.json | 197 +++++++++------- src/lib/runners/spga.json | 7 +- src/lib/runners/spki.json | 7 +- src/lib/runners/sskt.json | 7 +- src/lib/runners/sucz.json | 7 +- src/lib/runners/svbd.json | 103 ++++---- src/lib/runners/sxnt.json | 3 +- src/lib/runners/tfsi.json | 8 +- src/lib/runners/thbw.json | 8 +- src/lib/runners/thkn.json | 50 ++-- src/lib/runners/tjaf.json | 7 +- src/lib/runners/toem.json | 7 +- src/lib/runners/tpyg.json | 7 +- src/lib/runners/udxn.json | 7 +- src/lib/runners/uexo.json | 43 ++-- src/lib/runners/ugvz.json | 199 +++++++++------- src/lib/runners/uhqo.json | 7 +- src/lib/runners/uiwl.json | 33 ++- src/lib/runners/unxf.json | 24 +- src/lib/runners/uppk.json | 3 +- src/lib/runners/uvmv.json | 7 +- src/lib/runners/uwma.json | 13 +- src/lib/runners/uwyn.json | 182 ++++++++------ src/lib/runners/vcqp.json | 7 +- src/lib/runners/vdhd.json | 48 ++-- src/lib/runners/veft.json | 3 +- src/lib/runners/vfdw.json | 14 +- src/lib/runners/vhte.json | 7 +- src/lib/runners/vilr.json | 3 +- src/lib/runners/vlhb.json | 7 +- src/lib/runners/vlob.json | 14 +- src/lib/runners/vmkg.json | 7 +- src/lib/runners/voeb.json | 7 +- src/lib/runners/vowa.json | 7 +- src/lib/runners/vozu.json | 3 +- src/lib/runners/vqwp.json | 7 +- src/lib/runners/vqyl.json | 7 +- src/lib/runners/vsvt.json | 7 +- src/lib/runners/vvjn.json | 8 +- src/lib/runners/vwvb.json | 7 +- src/lib/runners/wcer.json | 7 +- src/lib/runners/wenx.json | 7 +- src/lib/runners/weoz.json | 8 +- src/lib/runners/wgby.json | 7 +- src/lib/runners/wjwu.json | 8 +- src/lib/runners/wopl.json | 7 +- src/lib/runners/wqml.json | 5 +- src/lib/runners/wtup.json | 7 +- src/lib/runners/wunw.json | 23 +- src/lib/runners/wwtl.json | 10 +- src/lib/runners/wzqv.json | 343 ++++++++++++++++----------- src/lib/runners/xbki.json | 484 +++++++++++++++++++++++--------------- src/lib/runners/xhdq.json | 14 +- src/lib/runners/xhul.json | 7 +- src/lib/runners/xjzx.json | 7 +- src/lib/runners/xkcm.json | 7 +- src/lib/runners/xlgb.json | 7 +- src/lib/runners/xmqp.json | 15 +- src/lib/runners/xpks.json | 7 +- src/lib/runners/xqjd.json | 7 +- src/lib/runners/xusi.json | 14 +- src/lib/runners/xwzc.json | 8 +- src/lib/runners/xxan.json | 7 +- src/lib/runners/yabb.json | 5 +- src/lib/runners/ybne.json | 7 +- src/lib/runners/ycpk.json | 7 +- src/lib/runners/ycxr.json | 3 +- src/lib/runners/yfwd.json | 3 +- src/lib/runners/yiri.json | 8 +- src/lib/runners/yjur.json | 15 +- src/lib/runners/ykqf.json | 7 +- src/lib/runners/ylav.json | 7 +- src/lib/runners/ynoy.json | 283 +++++++++++++--------- src/lib/runners/ysxf.json | 7 +- src/lib/runners/yxel.json | 8 +- src/lib/runners/yyfi.json | 7 +- src/lib/runners/zahd.json | 14 +- src/lib/runners/zdpf.json | 7 +- src/lib/runners/zemy.json | 33 ++- src/lib/runners/zkon.json | 7 +- src/lib/runners/zlrx.json | 20 +- src/lib/runners/zsxo.json | 8 +- src/lib/runners/zuus.json | 20 +- src/lib/runners/zwpj.json | 15 +- src/lib/runners/zwut.json | 149 +++++++----- src/lib/runners/zwvj.json | 7 +- src/lib/runners/zxkq.json | 7 +- src/lib/runners/zzhq.json | 7 +- src/lib/runners/zzxj.json | 3 +- src/lib/runners/zzyu.json | 15 +- 374 files changed, 4075 insertions(+), 2765 deletions(-) diff --git a/src/lib/runners/aaov.json b/src/lib/runners/aaov.json index e778ae205..dd20288d3 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", @@ -80,11 +78,12 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "d", @@ -163,6 +162,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 } ], diff --git a/src/lib/runners/abnp.json b/src/lib/runners/abnp.json index e4e25bb11..383fdb1fe 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", @@ -81,6 +79,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 } ], diff --git a/src/lib/runners/aezk.json b/src/lib/runners/aezk.json index 183e3594f..d05522d90 100644 --- a/src/lib/runners/aezk.json +++ b/src/lib/runners/aezk.json @@ -82,7 +82,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/afoh.json b/src/lib/runners/afoh.json index 9db668411..15d0efd20 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": { @@ -228,6 +226,9 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 12, + "containerState": "stepped", + "previouslyChangedExpressionState": "conditionActive", "activePriority": 4 } ], diff --git a/src/lib/runners/akik.json b/src/lib/runners/akik.json index 801928f68..90ee203c7 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": { @@ -181,7 +179,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -365,7 +366,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -550,7 +552,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -782,7 +785,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -1014,11 +1018,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1163,11 +1166,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1313,11 +1318,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1463,12 +1469,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -1614,11 +1621,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -1764,11 +1772,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1880,11 +1889,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -1997,11 +2008,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2114,12 +2126,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2232,11 +2245,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2349,11 +2363,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2431,7 +2446,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1.25, diff --git a/src/lib/runners/akjy.json b/src/lib/runners/akjy.json index 59d28db9e..8af69e03f 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", @@ -148,11 +146,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -298,11 +297,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -448,12 +448,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -599,11 +600,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -749,11 +751,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -865,7 +868,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 } ], "speed": 1, diff --git a/src/lib/runners/aklf.json b/src/lib/runners/aklf.json index 6a8f67a9b..e8cd54acb 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/akug.json b/src/lib/runners/akug.json index dbc7bb16b..35a2a54cd 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": { @@ -201,7 +199,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/alca.json b/src/lib/runners/alca.json index 45717a092..1b5924d1c 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/amjx.json b/src/lib/runners/amjx.json index 8b614cae6..f97864190 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", @@ -107,7 +105,10 @@ "priority": 2 }, "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/amoq.json b/src/lib/runners/amoq.json index d1d317cb8..836cfd5b5 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": { @@ -215,11 +213,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 11, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -231,7 +230,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 20 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/anzh.json b/src/lib/runners/anzh.json index a83864085..22fce8fbc 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", @@ -311,7 +309,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/aone.json b/src/lib/runners/aone.json index 798fa6ff5..122f811f2 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", @@ -136,7 +134,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/aovj.json b/src/lib/runners/aovj.json index 1372df9c7..380ef884a 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", @@ -35,11 +33,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -51,7 +50,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 4 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/apuz.json b/src/lib/runners/apuz.json index b56f569d9..15c5fd59d 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", @@ -81,11 +79,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "d", @@ -164,6 +163,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 } ], diff --git a/src/lib/runners/auks.json b/src/lib/runners/auks.json index 5cec45864..5d922c8b6 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/avcu.json b/src/lib/runners/avcu.json index 9f338caca..66dbf6233 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", @@ -134,7 +132,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/avsl.json b/src/lib/runners/avsl.json index 052acfb25..52d01fe88 100644 --- a/src/lib/runners/avsl.json +++ b/src/lib/runners/avsl.json @@ -108,7 +108,8 @@ }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, diff --git a/src/lib/runners/awbq.json b/src/lib/runners/awbq.json index b809d1a06..b6da26409 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", @@ -101,7 +99,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/awwn.json b/src/lib/runners/awwn.json index f0ad93106..92c620787 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": { @@ -200,7 +198,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ayok.json b/src/lib/runners/ayok.json index 7da316052..477d238d6 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", @@ -62,11 +60,12 @@ }, "type": "function" }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -126,11 +125,12 @@ }, "type": "function" }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -190,12 +190,13 @@ }, "type": "function" }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -255,11 +256,12 @@ }, "type": "function" }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -284,7 +286,11 @@ "bound": true }, "type": "function" - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, diff --git a/src/lib/runners/ayrl.json b/src/lib/runners/ayrl.json index a8a15ff20..0399fac57 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", @@ -99,7 +97,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/bdme.json b/src/lib/runners/bdme.json index 72a6e2719..de109c8f3 100644 --- a/src/lib/runners/bdme.json +++ b/src/lib/runners/bdme.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/beiz.json b/src/lib/runners/beiz.json index 3cc8cce7d..823748a6c 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", @@ -80,11 +78,12 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "d", @@ -163,11 +162,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "d", @@ -246,11 +246,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "d", @@ -329,12 +330,13 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "d", @@ -413,11 +415,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "d", @@ -496,11 +499,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -545,7 +549,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -595,7 +603,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -645,7 +654,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -696,7 +706,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -746,11 +757,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "c", "highlightType": "default", @@ -761,7 +771,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/bgfl.json b/src/lib/runners/bgfl.json index 4afd5c3b4..91d050dc3 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", @@ -13,7 +11,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/bgko.json b/src/lib/runners/bgko.json index 4c16df565..3792bf480 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", @@ -229,7 +227,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/bgxi.json b/src/lib/runners/bgxi.json index cca894223..69b698659 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/bhpw.json b/src/lib/runners/bhpw.json index 9ce7a65e1..d8842adf0 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandFunc": "add" - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/biit.json b/src/lib/runners/biit.json index 4537bd201..1bbbf1c9d 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandFunc": "add" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/blvt.json b/src/lib/runners/blvt.json index 540616e6a..1de3983c2 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", @@ -114,7 +112,10 @@ }, "type": "function", "meta": "plusOneEffect" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/bndi.json b/src/lib/runners/bndi.json index d05350821..1abc034c6 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumberAfterConvert": "trueCase" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/bnyo.json b/src/lib/runners/bnyo.json index 9976e4331..d3aa05f20 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": { @@ -466,7 +464,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 15, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/bras.json b/src/lib/runners/bras.json index 7458e72d8..07b88be96 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", @@ -472,7 +470,11 @@ "priority": 2 }, "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 21 } ], "speed": 1, diff --git a/src/lib/runners/bwff.json b/src/lib/runners/bwff.json index 8859306eb..a3e99b613 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", @@ -80,7 +78,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/bwnp.json b/src/lib/runners/bwnp.json index 80fd367d4..43746d588 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,7 +16,10 @@ "bound": true, "shorthandFunc": "add" } - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/bxuv.json b/src/lib/runners/bxuv.json index 0daf823e5..3c64a1d9e 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", @@ -311,7 +309,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/cbmn.json b/src/lib/runners/cbmn.json index 5d36cf5f5..d5067cd72 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", @@ -209,7 +207,10 @@ }, "type": "function", "meta": "minusOneEffect" - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/cefx.json b/src/lib/runners/cefx.json index 9683c8653..50ac49602 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", @@ -313,7 +311,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/cjxe.json b/src/lib/runners/cjxe.json index 334c86b88..5f98a8010 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", @@ -99,7 +97,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/cldb.json b/src/lib/runners/cldb.json index a4b3f1370..d3ab70355 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", @@ -208,7 +206,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/cmla.json b/src/lib/runners/cmla.json index 742ae77c0..34ee91989 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", @@ -61,7 +59,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/cowm.json b/src/lib/runners/cowm.json index b1e0cef1e..62f0b8c76 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": { @@ -61,7 +59,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/cpdy.json b/src/lib/runners/cpdy.json index 74723fd47..dda9af795 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", @@ -216,7 +214,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/cpkp.json b/src/lib/runners/cpkp.json index f58e4044a..2d7097568 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", @@ -13,7 +11,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/crvj.json b/src/lib/runners/crvj.json index 86992cd51..24c79bd28 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", @@ -66,7 +64,10 @@ "priority": 2 }, "priority": 1 - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/csqj.json b/src/lib/runners/csqj.json index 20b6485f9..9ae12a307 100644 --- a/src/lib/runners/csqj.json +++ b/src/lib/runners/csqj.json @@ -96,7 +96,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -194,7 +195,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -293,7 +295,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -391,11 +394,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "e", @@ -454,7 +456,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/cuwg.json b/src/lib/runners/cuwg.json index 38d3b3e7b..0a3f71a59 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": { @@ -66,11 +64,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -135,11 +134,12 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "arg": { @@ -204,11 +204,12 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -273,12 +274,13 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -343,11 +345,12 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -378,7 +381,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 2 } ], "speed": 1, diff --git a/src/lib/runners/cvtc.json b/src/lib/runners/cvtc.json index 37bcae74b..645c76197 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", @@ -80,7 +78,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/cyyp.json b/src/lib/runners/cyyp.json index 113479606..8a1de2fd6 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": { @@ -187,7 +185,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dcji.json b/src/lib/runners/dcji.json index cb2545403..98991f11e 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", @@ -75,11 +73,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -91,7 +90,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 0 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ddrg.json b/src/lib/runners/ddrg.json index 0f4dc120f..2100ef8f2 100644 --- a/src/lib/runners/ddrg.json +++ b/src/lib/runners/ddrg.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -123,7 +121,10 @@ "priority": 3 }, "priority": 1 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/deay.json b/src/lib/runners/deay.json index 391930403..67d048489 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": { @@ -95,7 +93,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dewi.json b/src/lib/runners/dewi.json index 717b2be7c..ac993897b 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", @@ -135,7 +133,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dfjp.json b/src/lib/runners/dfjp.json index 04996a415..49d17e1d8 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": { @@ -155,7 +153,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dgpx.json b/src/lib/runners/dgpx.json index b35f4aba9..fc5a2fea7 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": { @@ -95,7 +93,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dgyc.json b/src/lib/runners/dgyc.json index 85bcd448e..1347fcbbd 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", @@ -34,7 +32,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dhiu.json b/src/lib/runners/dhiu.json index 21a548d37..05c97346e 100644 --- a/src/lib/runners/dhiu.json +++ b/src/lib/runners/dhiu.json @@ -182,7 +182,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -366,7 +367,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -551,7 +553,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -783,7 +786,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -1015,11 +1019,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1164,7 +1167,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 } ], "speed": 1, diff --git a/src/lib/runners/dhzf.json b/src/lib/runners/dhzf.json index 8e89d87bb..9eed1e670 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", @@ -61,7 +59,10 @@ "priority": 1 }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/diis.json b/src/lib/runners/diis.json index 5592d6940..a027e22a0 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": { @@ -67,11 +65,12 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -136,12 +135,13 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -206,11 +206,12 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -275,11 +276,12 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -310,7 +312,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 2 } ], "speed": 1, diff --git a/src/lib/runners/ditw.json b/src/lib/runners/ditw.json index 25743ea81..c92cc80d1 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", @@ -34,7 +32,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dkdt.json b/src/lib/runners/dkdt.json index 155075ce6..d4c4c440c 100644 --- a/src/lib/runners/dkdt.json +++ b/src/lib/runners/dkdt.json @@ -63,7 +63,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/dkiy.json b/src/lib/runners/dkiy.json index 221e35e9e..003243d39 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", @@ -80,7 +78,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dmrz.json b/src/lib/runners/dmrz.json index 36d8bc925..62521781f 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", @@ -99,7 +97,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dogu.json b/src/lib/runners/dogu.json index 3d415c96c..95fb00136 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dpaw.json b/src/lib/runners/dpaw.json index 96858ffb7..522dd9a90 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": { @@ -466,7 +464,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 15, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dqdv.json b/src/lib/runners/dqdv.json index 01d94f4c2..8b161acb9 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", @@ -61,7 +59,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dqey.json b/src/lib/runners/dqey.json index 08ac035de..1f0816107 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": { @@ -67,6 +65,9 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 2 } ], diff --git a/src/lib/runners/dqwh.json b/src/lib/runners/dqwh.json index e56fa8656..161550322 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", @@ -46,7 +44,10 @@ "bound": true }, "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dtzu.json b/src/lib/runners/dtzu.json index 65f866d9b..e835671d3 100644 --- a/src/lib/runners/dtzu.json +++ b/src/lib/runners/dtzu.json @@ -83,7 +83,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/dubm.json b/src/lib/runners/dubm.json index 8a917cc67..e5bc9e64b 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", @@ -118,7 +116,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/duuk.json b/src/lib/runners/duuk.json index 7f1fb09a6..c5f55bec4 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", @@ -118,7 +116,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dvpl.json b/src/lib/runners/dvpl.json index 50d88c0b1..4bfc0de9e 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", @@ -113,7 +111,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dwmc.json b/src/lib/runners/dwmc.json index af523a5c0..d6c621cbb 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": { @@ -439,11 +437,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 19 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -881,11 +881,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 19 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "arg": { @@ -1323,11 +1324,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 19 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "arg": { @@ -1765,11 +1767,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 19 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -2207,12 +2210,13 @@ "type": "call", "priority": 1 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 19 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -2996,11 +3000,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 33 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -3784,11 +3789,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 33 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -4364,11 +4370,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 25 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -4945,11 +4953,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 25 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -5526,12 +5535,13 @@ "type": "call", "priority": 1 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 25 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -6473,11 +6483,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 40 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -7419,11 +7430,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 40 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -7966,11 +7978,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 24 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -8514,11 +8528,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 24 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -9062,12 +9077,13 @@ "type": "call", "priority": 1 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 24 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -9654,11 +9670,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 26 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -10245,11 +10262,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 26 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "type": "conditional", @@ -10780,11 +10798,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 24 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "type": "conditional", @@ -11316,11 +11336,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 24 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "type": "conditional", @@ -11830,7 +11851,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 23 } ], "speed": 1.75, diff --git a/src/lib/runners/dwzy.json b/src/lib/runners/dwzy.json index d0a35d4b0..2af4ca44f 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", @@ -41,7 +39,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/dyoq.json b/src/lib/runners/dyoq.json index cb61c6856..825ef4a50 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": { @@ -181,11 +179,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -197,7 +196,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/eagi.json b/src/lib/runners/eagi.json index 5eb5bfa60..8fece100f 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": { @@ -75,11 +73,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -91,7 +90,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 5 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/ednv.json b/src/lib/runners/ednv.json index f2fcd66e6..c291ee282 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", @@ -39,11 +37,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -55,7 +54,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 6 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/edzu.json b/src/lib/runners/edzu.json index 773733bc9..3d94bc9c0 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", @@ -156,7 +154,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ehxq.json b/src/lib/runners/ehxq.json index 21cae8cee..99e7f18d2 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", @@ -118,11 +116,12 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -134,7 +133,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 4 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/elku.json b/src/lib/runners/elku.json index 6714b5898..c74ab36aa 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/elyq.json b/src/lib/runners/elyq.json index fe37e8221..f205f22aa 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", @@ -41,7 +39,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/envj.json b/src/lib/runners/envj.json index 28533ac70..a56bba432 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", @@ -113,7 +111,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/eozk.json b/src/lib/runners/eozk.json index cc0984a4a..2f84f796e 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", @@ -61,7 +59,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/epoi.json b/src/lib/runners/epoi.json index c6c9c14a5..9686e2e1d 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", @@ -80,11 +78,12 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -96,7 +95,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/etae.json b/src/lib/runners/etae.json index 7ddf0ec4e..63d1c44bc 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", @@ -81,6 +79,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 } diff --git a/src/lib/runners/etku.json b/src/lib/runners/etku.json index 264c157bd..d745461ca 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", @@ -39,7 +37,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/evqx.json b/src/lib/runners/evqx.json index 754cdd396..7eb671837 100644 --- a/src/lib/runners/evqx.json +++ b/src/lib/runners/evqx.json @@ -49,7 +49,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -99,7 +100,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/eweo.json b/src/lib/runners/eweo.json index 988179f1f..64fc66c54 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", @@ -134,7 +132,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ewfr.json b/src/lib/runners/ewfr.json index 00006f77a..6baa36128 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,7 +16,10 @@ "bound": true, "shorthandFunc": "pred" } - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/exbn.json b/src/lib/runners/exbn.json index 46065e15d..27b989cf0 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": { @@ -181,7 +179,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -365,7 +366,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -550,7 +552,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -782,7 +785,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -1014,11 +1018,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1163,11 +1166,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1313,11 +1318,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1463,12 +1469,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -1614,11 +1621,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -1764,11 +1772,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1880,11 +1889,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -1997,11 +2008,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2114,12 +2126,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2232,11 +2245,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2349,11 +2363,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2431,7 +2446,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1.25, diff --git a/src/lib/runners/ezmz.json b/src/lib/runners/ezmz.json index b0b032eaa..15c932f12 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": { @@ -182,11 +180,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -198,7 +197,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/fclo.json b/src/lib/runners/fclo.json index daa780ccb..b615e2a1b 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": { @@ -66,7 +64,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/fdig.json b/src/lib/runners/fdig.json index f1f3dc417..3323b28b5 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", @@ -35,7 +33,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/fhkl.json b/src/lib/runners/fhkl.json index 78efef359..c6e536191 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": { @@ -314,11 +312,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -330,7 +329,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/fhrd.json b/src/lib/runners/fhrd.json index bf75c7bce..0540af0cd 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/fkat.json b/src/lib/runners/fkat.json index c5dedc09d..a469730c3 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", @@ -147,7 +145,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/fkqu.json b/src/lib/runners/fkqu.json index 6b5e4b04f..383164100 100644 --- a/src/lib/runners/fkqu.json +++ b/src/lib/runners/fkqu.json @@ -108,7 +108,8 @@ }, "previouslyChangedExpressionState": "falseCaseActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, diff --git a/src/lib/runners/fkvy.json b/src/lib/runners/fkvy.json index d7c1d8803..056ac89ff 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": { @@ -439,7 +437,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 19 } ], "speed": 1, diff --git a/src/lib/runners/fljg.json b/src/lib/runners/fljg.json index b5a4a8c0a..98951a25e 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": { @@ -182,7 +180,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/fogc.json b/src/lib/runners/fogc.json index f58e4044a..2d7097568 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", @@ -13,7 +11,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/fsgq.json b/src/lib/runners/fsgq.json index 846dc4a95..953515110 100644 --- a/src/lib/runners/fsgq.json +++ b/src/lib/runners/fsgq.json @@ -182,7 +182,8 @@ }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -367,7 +368,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -599,7 +601,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -831,11 +834,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -980,11 +982,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1130,11 +1134,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1280,12 +1285,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -1431,11 +1437,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -1581,11 +1588,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1697,11 +1705,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -1814,11 +1824,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1931,12 +1942,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2049,11 +2061,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2166,11 +2179,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2248,7 +2262,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1.25, diff --git a/src/lib/runners/fton.json b/src/lib/runners/fton.json index fd0e5f66f..84c5126e3 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", @@ -163,7 +161,10 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/fxde.json b/src/lib/runners/fxde.json index 7b8b63837..5ff33ab33 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", @@ -61,7 +59,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/fxok.json b/src/lib/runners/fxok.json index dab95d4cb..2ae6ba9b8 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", @@ -47,7 +45,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, diff --git a/src/lib/runners/gemh.json b/src/lib/runners/gemh.json index 0b7dcddd0..a7fb1ab52 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", @@ -13,7 +11,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/ggxl.json b/src/lib/runners/ggxl.json index 1d2e4e174..6ce6e5781 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", @@ -34,7 +32,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ghwe.json b/src/lib/runners/ghwe.json index 4baa5ca6c..303e72f46 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", @@ -101,7 +99,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/glbk.json b/src/lib/runners/glbk.json index e1487f1e8..70b47e061 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", @@ -46,7 +44,10 @@ "bound": true }, "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/gmgs.json b/src/lib/runners/gmgs.json index b3f498b5d..2f57c1cf8 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", @@ -118,7 +116,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/gmzn.json b/src/lib/runners/gmzn.json index 0df848c23..1709149a3 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", @@ -101,7 +99,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -205,7 +206,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { "expression": { @@ -310,7 +312,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { "expression": { @@ -416,7 +419,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { "expression": { @@ -522,11 +526,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -592,7 +595,11 @@ "priority": 2 }, "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 } ], "speed": 1, diff --git a/src/lib/runners/gngw.json b/src/lib/runners/gngw.json index 99612c713..c3af455c2 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": { @@ -592,7 +590,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 27 } ], "speed": 1, diff --git a/src/lib/runners/gnwm.json b/src/lib/runners/gnwm.json index f7f589faa..64377a0b5 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", @@ -35,7 +33,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/gpat.json b/src/lib/runners/gpat.json index 2bab5dde5..5b0a66045 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", @@ -210,11 +208,12 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -423,11 +422,12 @@ "type": "call", "priority": 4 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -636,12 +636,13 @@ "type": "call", "priority": 4 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "blankNumber", @@ -892,11 +893,12 @@ "type": "call", "priority": 4 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -1147,11 +1149,12 @@ "type": "call", "priority": 4 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -1326,11 +1329,13 @@ "state": "default", "type": "call", "priority": 3 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -1506,11 +1511,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -1686,12 +1692,13 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "blankNumber", @@ -1895,11 +1902,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -2103,11 +2111,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -2248,11 +2257,13 @@ "state": "default", "type": "call", "priority": 3 - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -2394,11 +2405,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 4, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -2540,12 +2552,13 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 4, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -2687,11 +2700,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 4, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -2771,11 +2785,13 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -2856,11 +2872,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -2941,12 +2958,13 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -3027,11 +3045,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -3077,7 +3096,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -3128,7 +3151,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -3180,7 +3204,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -3232,7 +3257,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -3284,11 +3310,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "blankNumber", "highlightType": "default", @@ -3300,7 +3325,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumberAfterConvert": "falseCase" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1.25, diff --git a/src/lib/runners/grla.json b/src/lib/runners/grla.json index 1f45fed37..0b088b2ca 100644 --- a/src/lib/runners/grla.json +++ b/src/lib/runners/grla.json @@ -48,11 +48,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "d", "highlightType": "default", @@ -63,7 +62,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/gtdu.json b/src/lib/runners/gtdu.json index 394f8b168..d12c9c519 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": { @@ -66,7 +64,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/guhy.json b/src/lib/runners/guhy.json index d89a0b4c8..7a580c610 100644 --- a/src/lib/runners/guhy.json +++ b/src/lib/runners/guhy.json @@ -49,7 +49,8 @@ }, "previouslyChangedExpressionState": "falseCaseActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/gvxz.json b/src/lib/runners/gvxz.json index b3d0a2cf0..49124caf3 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumberPlusOrMinusOne": "minus" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/gwtp.json b/src/lib/runners/gwtp.json index 08c5c3910..32e1e09dc 100644 --- a/src/lib/runners/gwtp.json +++ b/src/lib/runners/gwtp.json @@ -49,7 +49,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -99,7 +100,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/hafp.json b/src/lib/runners/hafp.json index 345ef95d5..4472d6747 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", @@ -313,7 +311,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/hbbv.json b/src/lib/runners/hbbv.json index 94f9d6f04..054b1d826 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", @@ -47,7 +45,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, diff --git a/src/lib/runners/hdhy.json b/src/lib/runners/hdhy.json index a59a055d1..2f75f71eb 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", @@ -115,11 +113,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -232,11 +231,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -349,12 +349,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -467,11 +468,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -584,11 +586,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -666,7 +669,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/hdxc.json b/src/lib/runners/hdxc.json index 2d811d843..1e6f2cbaf 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", @@ -80,11 +78,12 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "h", @@ -163,11 +162,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "h", @@ -246,11 +246,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "h", @@ -329,12 +330,13 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "h", @@ -413,11 +415,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "h", @@ -462,7 +465,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -512,7 +519,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -562,7 +570,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -613,7 +622,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -663,7 +673,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -713,11 +724,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "h", "highlightType": "default", @@ -728,7 +738,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/hehx.json b/src/lib/runners/hehx.json index b1b656346..0e20250cf 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", @@ -61,7 +59,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/hhdu.json b/src/lib/runners/hhdu.json index 51117e94a..973cf2676 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", @@ -61,7 +59,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/hhjq.json b/src/lib/runners/hhjq.json index 615b84f06..9a06ccfa6 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", @@ -163,7 +161,10 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/hluq.json b/src/lib/runners/hluq.json index 93052fa8e..3fc3a1b04 100644 --- a/src/lib/runners/hluq.json +++ b/src/lib/runners/hluq.json @@ -62,7 +62,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -126,7 +127,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -191,7 +193,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -269,7 +272,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -347,11 +351,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "g", @@ -376,7 +379,11 @@ "bound": true }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/hnyn.json b/src/lib/runners/hnyn.json index 3cb52bd35..13e1b4896 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", @@ -115,11 +113,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -232,11 +231,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -349,12 +349,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -467,11 +468,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -584,11 +586,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -666,7 +669,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/htir.json b/src/lib/runners/htir.json index 8b9ab299e..75095f2ff 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", @@ -313,11 +311,12 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -329,7 +328,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 5 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/hvfb.json b/src/lib/runners/hvfb.json index 8c01032f2..bb10a5850 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", @@ -187,7 +185,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/hvqh.json b/src/lib/runners/hvqh.json index c78e322dc..1f40876c4 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", @@ -27,7 +25,10 @@ "bound": true }, "type": "function" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/hvqy.json b/src/lib/runners/hvqy.json index 51230edc2..2251efe27 100644 --- a/src/lib/runners/hvqy.json +++ b/src/lib/runners/hvqy.json @@ -49,7 +49,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/hykj.json b/src/lib/runners/hykj.json index 3bee1c84b..4a5c075e2 100644 --- a/src/lib/runners/hykj.json +++ b/src/lib/runners/hykj.json @@ -82,7 +82,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -167,7 +168,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -251,7 +253,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -335,11 +338,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -384,7 +386,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 }, { "expression": { @@ -434,7 +440,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -484,7 +491,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -535,7 +543,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -585,7 +594,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -635,11 +645,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "a", "highlightType": "default", @@ -650,7 +659,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/iatt.json b/src/lib/runners/iatt.json index e0bb82dab..df5a75f46 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", @@ -48,11 +46,12 @@ "shorthandNumber": 2 }, "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -64,7 +63,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/iczf.json b/src/lib/runners/iczf.json index 3c8c5331d..9745d1492 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": { @@ -75,7 +73,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ifiq.json b/src/lib/runners/ifiq.json index 39ee7e3b1..d8bd77425 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": { @@ -295,7 +293,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 9, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -593,7 +594,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -892,7 +894,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -1257,7 +1260,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { "expression": { @@ -1622,11 +1626,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1885,11 +1888,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -2149,11 +2154,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2413,12 +2419,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2812,11 +2819,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -3210,11 +3218,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -3507,11 +3516,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -3805,11 +3816,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -4103,12 +4115,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -4416,11 +4429,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -4728,11 +4742,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -4991,11 +5006,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -5255,11 +5272,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "name": "b", @@ -5519,11 +5537,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "name": "b", @@ -5783,11 +5802,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -6047,12 +6067,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -6412,11 +6433,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -6776,11 +6798,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -7006,11 +7029,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -7237,11 +7262,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "name": "b", @@ -7468,11 +7494,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "name": "b", @@ -7699,11 +7726,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -7930,12 +7958,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -8176,11 +8205,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -8421,11 +8451,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -8617,11 +8648,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -8814,11 +8847,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -9011,12 +9045,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -9329,11 +9364,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -9646,11 +9682,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -9809,11 +9846,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -9973,11 +10012,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -10137,12 +10177,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -10316,11 +10357,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -10494,11 +10536,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -10624,11 +10667,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -10755,11 +10800,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -10886,12 +10932,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -11018,11 +11065,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -11149,11 +11197,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -11245,11 +11294,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -11342,11 +11393,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -11439,12 +11491,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -11537,11 +11590,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -11600,7 +11654,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 2 } ], "speed": 1.75, diff --git a/src/lib/runners/ifpo.json b/src/lib/runners/ifpo.json index cd4b9f19c..88a6fd600 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/igpn.json b/src/lib/runners/igpn.json index 3abfaac97..663e3ae5a 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", @@ -61,7 +59,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/igrl.json b/src/lib/runners/igrl.json index 061bf0998..3df82ddb5 100644 --- a/src/lib/runners/igrl.json +++ b/src/lib/runners/igrl.json @@ -82,7 +82,8 @@ }, "previouslyChangedExpressionState": "showCallArg", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/ilpo.json b/src/lib/runners/ilpo.json index d19c969b0..80f993320 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ilvq.json b/src/lib/runners/ilvq.json index ac7ed3536..a08e0e42d 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/immq.json b/src/lib/runners/immq.json index ee67d4e50..280184b57 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": { @@ -61,7 +59,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/imyd.json b/src/lib/runners/imyd.json index d66265f57..d54b4d8a8 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/issq.json b/src/lib/runners/issq.json index d37cf761e..1df369c32 100644 --- a/src/lib/runners/issq.json +++ b/src/lib/runners/issq.json @@ -76,7 +76,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/itbm.json b/src/lib/runners/itbm.json index 36ce0cde6..741760558 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", @@ -47,11 +45,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "b", "highlightType": "default", @@ -62,7 +61,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/ivol.json b/src/lib/runners/ivol.json index 5f9ee79e3..2dc5a9c97 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", @@ -13,7 +11,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/iwmu.json b/src/lib/runners/iwmu.json index 04e0faa40..996dd9cd1 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 6 - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/izgz.json b/src/lib/runners/izgz.json index 2142a8a68..bf5d856d6 100644 --- a/src/lib/runners/izgz.json +++ b/src/lib/runners/izgz.json @@ -82,7 +82,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -166,11 +167,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -215,7 +215,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 }, { "expression": { @@ -265,7 +269,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -315,7 +320,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -366,7 +372,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -416,7 +423,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -466,11 +474,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "a", "highlightType": "default", @@ -481,7 +488,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/jaqs.json b/src/lib/runners/jaqs.json index 3578c5045..20623543d 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", @@ -38,7 +36,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jarm.json b/src/lib/runners/jarm.json index 5e042e8b7..b925d8a33 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", @@ -41,7 +39,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jbam.json b/src/lib/runners/jbam.json index 4f6a48046..d721d1b10 100644 --- a/src/lib/runners/jbam.json +++ b/src/lib/runners/jbam.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -98,7 +99,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -149,7 +151,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -199,11 +202,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "d", "highlightType": "default", @@ -214,7 +216,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/jbqw.json b/src/lib/runners/jbqw.json index 24b14ef2e..5d9b9ae66 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", @@ -166,7 +164,10 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jehv.json b/src/lib/runners/jehv.json index fb7e8fc4c..d6aac3073 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", @@ -39,11 +37,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -55,7 +54,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 20 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jguj.json b/src/lib/runners/jguj.json index cf4741434..417eb929d 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", @@ -114,7 +112,10 @@ }, "type": "function", "meta": "plusOneEffect" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jiqb.json b/src/lib/runners/jiqb.json index 0b4fdf51d..7d7a647ea 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": { @@ -55,11 +53,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -71,7 +70,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 4 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/jiua.json b/src/lib/runners/jiua.json index 96610edb6..42cba3db1 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", @@ -136,7 +134,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jjet.json b/src/lib/runners/jjet.json index 210f59166..be82a145b 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": { @@ -552,7 +550,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 25 } ], "speed": 1, diff --git a/src/lib/runners/jjjh.json b/src/lib/runners/jjjh.json index ed95550ab..21a7e391d 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", @@ -41,11 +39,12 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -57,7 +56,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 0 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jmmp.json b/src/lib/runners/jmmp.json index a0587e1a0..df54cd140 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": { @@ -66,7 +64,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/joaq.json b/src/lib/runners/joaq.json index d4fa20ed8..45fb9328e 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", @@ -61,7 +59,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jsvg.json b/src/lib/runners/jsvg.json index 0297fa338..bdf1ab809 100644 --- a/src/lib/runners/jsvg.json +++ b/src/lib/runners/jsvg.json @@ -182,7 +182,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -366,7 +367,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -551,7 +553,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -783,7 +786,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -1015,11 +1019,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1164,7 +1167,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 } ], "speed": 1, diff --git a/src/lib/runners/jtxf.json b/src/lib/runners/jtxf.json index 3b95a93a6..a24ce53cc 100644 --- a/src/lib/runners/jtxf.json +++ b/src/lib/runners/jtxf.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -54,7 +52,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jwah.json b/src/lib/runners/jwah.json index 16366a707..46a4053e2 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 0 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jwce.json b/src/lib/runners/jwce.json index 39fabe38a..0edafeea5 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": { @@ -75,7 +73,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jwdn.json b/src/lib/runners/jwdn.json index ec2dea58a..4f469f129 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", @@ -81,6 +79,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 } ], diff --git a/src/lib/runners/jwue.json b/src/lib/runners/jwue.json index 147f0ed40..feab10a51 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", @@ -47,7 +45,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, diff --git a/src/lib/runners/jwzh.json b/src/lib/runners/jwzh.json index bcb2d8a2f..5fb01dd8e 100644 --- a/src/lib/runners/jwzh.json +++ b/src/lib/runners/jwzh.json @@ -49,7 +49,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/jxvy.json b/src/lib/runners/jxvy.json index 8efe708f6..6d9644425 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumberPlusOrMinusOne": "plus" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/jyqf.json b/src/lib/runners/jyqf.json index e05b286ee..d53e2ba4b 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/kbnn.json b/src/lib/runners/kbnn.json index b995f1e02..b89d3e385 100644 --- a/src/lib/runners/kbnn.json +++ b/src/lib/runners/kbnn.json @@ -48,11 +48,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "b", "highlightType": "default", @@ -63,7 +62,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/kdgv.json b/src/lib/runners/kdgv.json index 08468f882..25bfb2098 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": { @@ -227,7 +225,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 12, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/keck.json b/src/lib/runners/keck.json index b8de99c6c..c48c5f126 100644 --- a/src/lib/runners/keck.json +++ b/src/lib/runners/keck.json @@ -49,7 +49,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/kiiq.json b/src/lib/runners/kiiq.json index e43ca51f6..dcbe9ce17 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumberAfterConvert": "falseCase" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/kizi.json b/src/lib/runners/kizi.json index e8859f47f..5275f44c2 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 4 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/kjba.json b/src/lib/runners/kjba.json index d7d8e0628..533fb085f 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", @@ -313,7 +311,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/kmyl.json b/src/lib/runners/kmyl.json index 265abe37a..6634b46e8 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", @@ -48,11 +46,12 @@ "shorthandNumber": 5 }, "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -64,7 +63,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 5 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/knhw.json b/src/lib/runners/knhw.json index f1d25f484..ba144e38a 100644 --- a/src/lib/runners/knhw.json +++ b/src/lib/runners/knhw.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/kosw.json b/src/lib/runners/kosw.json index 0b8c208ad..63adb54e0 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", @@ -147,7 +145,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/kvso.json b/src/lib/runners/kvso.json index 21cbd3ef3..d2739e30a 100644 --- a/src/lib/runners/kvso.json +++ b/src/lib/runners/kvso.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -99,7 +100,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -149,11 +151,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "c", "highlightType": "default", @@ -164,7 +165,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/kwyy.json b/src/lib/runners/kwyy.json index 660cdfc47..1bc5ffe6e 100644 --- a/src/lib/runners/kwyy.json +++ b/src/lib/runners/kwyy.json @@ -182,7 +182,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, diff --git a/src/lib/runners/kzkg.json b/src/lib/runners/kzkg.json index 868b345e3..bcb99adf2 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/laea.json b/src/lib/runners/laea.json index b04d15cec..a93ee1ecf 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", @@ -81,7 +79,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ldqk.json b/src/lib/runners/ldqk.json index ccd791649..7e31c2885 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": { @@ -61,7 +59,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/lgiv.json b/src/lib/runners/lgiv.json index cf542f4e6..715d0cbcf 100644 --- a/src/lib/runners/lgiv.json +++ b/src/lib/runners/lgiv.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -57,11 +55,12 @@ }, "state": "default", "priority": 2 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -117,11 +116,12 @@ "state": "default", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -155,7 +155,11 @@ }, "state": "default", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -194,11 +198,10 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "type": "variable", "name": "shorthandNumber", @@ -210,7 +213,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "shorthandNumber": 24 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/lipt.json b/src/lib/runners/lipt.json index 5a353c14c..f5b6d43ef 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", @@ -143,11 +141,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -288,12 +287,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -448,11 +448,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -607,11 +608,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -717,11 +719,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -828,11 +832,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -939,12 +944,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -1085,11 +1091,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -1230,11 +1237,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1307,11 +1315,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -1385,11 +1395,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1463,12 +1474,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -1542,11 +1554,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1585,7 +1598,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1.25, diff --git a/src/lib/runners/lizi.json b/src/lib/runners/lizi.json index cf26d17b4..cc201b19d 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", @@ -35,7 +33,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/loai.json b/src/lib/runners/loai.json index 0969b7ceb..b419a03c8 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ltpe.json b/src/lib/runners/ltpe.json index c765bf6f1..6b0c1f4a6 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", @@ -81,12 +79,13 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "d", @@ -165,6 +164,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 } ], diff --git a/src/lib/runners/lwoq.json b/src/lib/runners/lwoq.json index e855478f4..25ffe7d30 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", @@ -113,7 +111,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/lxgj.json b/src/lib/runners/lxgj.json index ab7dff7e5..cc5da6fff 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", @@ -216,7 +214,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/lxhc.json b/src/lib/runners/lxhc.json index 7710cf07d..55f2cbbba 100644 --- a/src/lib/runners/lxhc.json +++ b/src/lib/runners/lxhc.json @@ -49,7 +49,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/lxrk.json b/src/lib/runners/lxrk.json index d72e8460e..2d3ece9ea 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": { @@ -155,11 +153,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -171,7 +170,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 3 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/mbje.json b/src/lib/runners/mbje.json index 3b3bcea0d..a49d11a28 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 10 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/mcug.json b/src/lib/runners/mcug.json index e846a60f9..e776e6f2f 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", @@ -35,11 +33,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -51,7 +50,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/mepb.json b/src/lib/runners/mepb.json index ef195d6b9..fdea0042d 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/mhgm.json b/src/lib/runners/mhgm.json index 173c0a81e..545300c12 100644 --- a/src/lib/runners/mhgm.json +++ b/src/lib/runners/mhgm.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/mhyv.json b/src/lib/runners/mhyv.json index e12d4848b..06b99f94e 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", @@ -62,6 +60,9 @@ }, "type": "function" }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 } ], diff --git a/src/lib/runners/mibj.json b/src/lib/runners/mibj.json index ed5738eef..001a266c9 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": { @@ -187,7 +185,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/mifg.json b/src/lib/runners/mifg.json index 3fafad207..bcaff23f7 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", @@ -61,11 +59,12 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -77,7 +76,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/mlnt.json b/src/lib/runners/mlnt.json index d10e4d480..7d12993c7 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", @@ -189,7 +187,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/mqvu.json b/src/lib/runners/mqvu.json index 604ffb36d..d25be8133 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", @@ -13,7 +11,10 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/msiw.json b/src/lib/runners/msiw.json index 24fdd7421..ea039c55c 100644 --- a/src/lib/runners/msiw.json +++ b/src/lib/runners/msiw.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -98,7 +99,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/msrk.json b/src/lib/runners/msrk.json index a24fbc4f3..42646af50 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": { @@ -228,6 +226,9 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 12, + "containerState": "stepped", + "previouslyChangedExpressionState": "trueCaseActive", "activePriority": 4 } ], diff --git a/src/lib/runners/mutg.json b/src/lib/runners/mutg.json index 9323b79d0..e8acd2367 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": { @@ -61,11 +59,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "m", "highlightType": "default", @@ -76,7 +75,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/myjz.json b/src/lib/runners/myjz.json index 7da316052..477d238d6 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", @@ -62,11 +60,12 @@ }, "type": "function" }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -126,11 +125,12 @@ }, "type": "function" }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -190,12 +190,13 @@ }, "type": "function" }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -255,11 +256,12 @@ }, "type": "function" }, + "numLeafNodes": 2, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -284,7 +286,11 @@ "bound": true }, "type": "function" - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, diff --git a/src/lib/runners/mzqc.json b/src/lib/runners/mzqc.json index 739d19a1d..20af47873 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/mzys.json b/src/lib/runners/mzys.json index 9d7e05310..f3f50f335 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ngxc.json b/src/lib/runners/ngxc.json index 5e9be54c4..9b646801a 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": { @@ -74,7 +72,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 } ], "speed": 1, diff --git a/src/lib/runners/nhqo.json b/src/lib/runners/nhqo.json index d0547c68b..5937b8245 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": { @@ -182,7 +180,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/niwv.json b/src/lib/runners/niwv.json index a7433c473..25b9ed181 100644 --- a/src/lib/runners/niwv.json +++ b/src/lib/runners/niwv.json @@ -182,7 +182,8 @@ }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, diff --git a/src/lib/runners/nlbn.json b/src/lib/runners/nlbn.json index f2ad6e0e0..b1c49480f 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": { @@ -200,7 +198,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -403,7 +404,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -606,7 +608,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -810,7 +813,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -1080,7 +1084,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -1350,11 +1355,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1518,11 +1522,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -1687,11 +1693,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1856,11 +1863,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2025,12 +2033,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2195,11 +2204,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2364,11 +2374,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2499,11 +2510,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -2635,11 +2648,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -2771,11 +2785,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2907,12 +2922,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -3044,11 +3060,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -3180,11 +3197,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -3281,7 +3299,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 4 } ], "speed": 1, diff --git a/src/lib/runners/nlyu.json b/src/lib/runners/nlyu.json index 6016dc90a..2c46b26d7 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/nmbt.json b/src/lib/runners/nmbt.json index 826d673e1..4e10bf55e 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", @@ -38,7 +36,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/nmmz.json b/src/lib/runners/nmmz.json index 4d1964518..eeac25595 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": { @@ -61,11 +59,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "i", "highlightType": "default", @@ -76,7 +75,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/nmrp.json b/src/lib/runners/nmrp.json index 131023577..3eb9ce425 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", @@ -190,11 +188,12 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -383,11 +382,12 @@ "type": "call", "priority": 4 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -576,12 +576,13 @@ "type": "call", "priority": 4 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -770,11 +771,12 @@ "type": "call", "priority": 4 }, + "numLeafNodes": 5, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -887,11 +889,13 @@ "state": "default", "type": "call", "priority": 3 - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "blankNumber", @@ -1005,11 +1009,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 4, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -1123,12 +1128,13 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 4, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "blankNumber", @@ -1270,11 +1276,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 4, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -1416,11 +1423,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 4, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -1500,11 +1508,13 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "blankNumber", @@ -1585,11 +1595,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "blankNumber", @@ -1670,12 +1681,13 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "blankNumber", @@ -1757,11 +1769,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "blankNumber", @@ -1843,11 +1856,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "blankNumber", @@ -1894,7 +1908,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -1946,7 +1964,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -1999,7 +2018,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -2051,11 +2071,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "blankNumber", "highlightType": "default", @@ -2067,7 +2086,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumberAfterConvert": "trueCase" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1.25, diff --git a/src/lib/runners/nngz.json b/src/lib/runners/nngz.json index 266ef429d..a61cf1ec6 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", @@ -99,7 +97,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/nntn.json b/src/lib/runners/nntn.json index 7313339e3..e39325042 100644 --- a/src/lib/runners/nntn.json +++ b/src/lib/runners/nntn.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/nplf.json b/src/lib/runners/nplf.json index 0c66a4dff..a6dab03e9 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/nuco.json b/src/lib/runners/nuco.json index 3d8fb13d0..d7c4c87dc 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": { @@ -181,7 +179,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/nvdn.json b/src/lib/runners/nvdn.json index b2db218c1..8f8c079aa 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", @@ -170,7 +168,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/nvqu.json b/src/lib/runners/nvqu.json index fbe0815b8..c36ec75fc 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", @@ -114,7 +112,10 @@ }, "type": "function", "meta": "plusOneEffect" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/oclg.json b/src/lib/runners/oclg.json index e64e1bec3..7ace1446e 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", @@ -61,7 +59,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/olyw.json b/src/lib/runners/olyw.json index 52be5c9c1..76edefc3b 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", @@ -113,7 +111,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/omwd.json b/src/lib/runners/omwd.json index 4535ed6cc..5850e42d5 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", @@ -134,7 +132,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/oork.json b/src/lib/runners/oork.json index 4b7dc03c5..87785493b 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": { @@ -67,6 +65,9 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 2 } ], diff --git a/src/lib/runners/ooya.json b/src/lib/runners/ooya.json index e64e1bec3..7ace1446e 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", @@ -61,7 +59,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/oqpi.json b/src/lib/runners/oqpi.json index dd08d140d..e08821d28 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": { @@ -219,7 +217,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -441,7 +442,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -664,7 +666,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -972,7 +975,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { "expression": { @@ -1280,11 +1284,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "i", @@ -1467,11 +1470,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "i", @@ -1655,11 +1660,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "i", @@ -1843,12 +1849,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "i", @@ -2032,11 +2039,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "i", @@ -2220,11 +2228,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "i", @@ -2374,11 +2383,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "i", @@ -2529,11 +2540,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "i", @@ -2684,12 +2696,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "i", @@ -2840,11 +2853,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "i", @@ -2995,11 +3009,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "i", @@ -3115,7 +3130,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 5 } ], "speed": 1.25, diff --git a/src/lib/runners/osff.json b/src/lib/runners/osff.json index 2e916f103..5af4346ab 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", @@ -81,6 +79,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 } ], diff --git a/src/lib/runners/osqo.json b/src/lib/runners/osqo.json index 78c06a713..021ec60c7 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", @@ -13,7 +11,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/otbe.json b/src/lib/runners/otbe.json index e8859f47f..5275f44c2 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 4 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/oukl.json b/src/lib/runners/oukl.json index 93f1faccb..deb0fc3e3 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", @@ -81,6 +79,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 } ], diff --git a/src/lib/runners/ovua.json b/src/lib/runners/ovua.json index 1973ab266..0884d6ed7 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", @@ -313,11 +311,12 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "shorthandNumber", @@ -629,11 +628,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 13, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "shorthandNumber", @@ -945,12 +945,13 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 13, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "shorthandNumber", @@ -1502,11 +1503,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 23, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "shorthandNumber", @@ -2058,11 +2060,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 23, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -2459,11 +2462,13 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 17, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "shorthandNumber", @@ -2861,11 +2866,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 17, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "name": "shorthandNumber", @@ -3263,11 +3269,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 17, + "containerState": "stepped", + "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "name": "shorthandNumber", @@ -3665,11 +3672,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 17, + "containerState": "stepped", + "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "shorthandNumber", @@ -4067,12 +4075,13 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 17, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "shorthandNumber", @@ -4816,11 +4825,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 31, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "shorthandNumber", @@ -5564,11 +5574,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 31, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -6104,11 +6115,13 @@ "state": "default", "type": "call", "priority": 3 - } + }, + "numLeafNodes": 23, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "shorthandNumber", @@ -6645,11 +6658,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 23, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "shorthandNumber", @@ -7186,12 +7200,13 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 23, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "shorthandNumber", @@ -8093,11 +8108,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 38, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "shorthandNumber", @@ -8999,11 +9015,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 38, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -9506,7 +9523,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 22, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -10014,7 +10035,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 22 }, { "expression": { @@ -10523,7 +10545,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 22 }, { "expression": { @@ -11033,7 +11056,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 22 }, { "expression": { @@ -11543,11 +11567,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 22 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -12017,7 +12040,11 @@ "priority": 2 }, "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 21 } ], "speed": 1.75, diff --git a/src/lib/runners/owpg.json b/src/lib/runners/owpg.json index d0ee316d3..f77139031 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", @@ -39,7 +37,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/oykb.json b/src/lib/runners/oykb.json index b960853c8..94b3dc64b 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", @@ -114,7 +112,10 @@ }, "type": "function", "meta": "plusOneEffect" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ozbe.json b/src/lib/runners/ozbe.json index 86c615bb4..f22668f49 100644 --- a/src/lib/runners/ozbe.json +++ b/src/lib/runners/ozbe.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -98,7 +99,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/ozxi.json b/src/lib/runners/ozxi.json index cbf232788..e13ea081a 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", @@ -13,7 +11,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/pbhg.json b/src/lib/runners/pbhg.json index cd7cff4f3..a3c4e8fc9 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", @@ -81,6 +79,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 } ], diff --git a/src/lib/runners/pbop.json b/src/lib/runners/pbop.json index 2bebf476c..d43f08b8a 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", @@ -208,7 +206,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/peiy.json b/src/lib/runners/peiy.json index c820a9bd0..5bacbb809 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", @@ -313,7 +311,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/pgxb.json b/src/lib/runners/pgxb.json index 2619082b2..5e1a3d377 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", @@ -39,11 +37,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -55,7 +54,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/plbv.json b/src/lib/runners/plbv.json index cae2bb077..2181d8762 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", @@ -48,7 +46,10 @@ "shorthandNumber": 5 }, "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/plde.json b/src/lib/runners/plde.json index 6bd8450f1..fd657bbcd 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": { @@ -181,7 +179,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/pmdm.json b/src/lib/runners/pmdm.json index 9b5dd30b7..41b440e9c 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/poha.json b/src/lib/runners/poha.json index ede812d11..9c80399a7 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", @@ -315,7 +313,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/psyv.json b/src/lib/runners/psyv.json index 1daec6650..37722377c 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", @@ -164,7 +162,10 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/qaoa.json b/src/lib/runners/qaoa.json index e539809ee..82b7dc22d 100644 --- a/src/lib/runners/qaoa.json +++ b/src/lib/runners/qaoa.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -331,7 +329,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 14, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/qcmh.json b/src/lib/runners/qcmh.json index 1764474db..2510e26c3 100644 --- a/src/lib/runners/qcmh.json +++ b/src/lib/runners/qcmh.json @@ -49,7 +49,8 @@ }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/qfbk.json b/src/lib/runners/qfbk.json index 1a0d7aa17..aea9822e1 100644 --- a/src/lib/runners/qfbk.json +++ b/src/lib/runners/qfbk.json @@ -82,7 +82,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/qgau.json b/src/lib/runners/qgau.json index f76d10afe..fee589726 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", @@ -147,7 +145,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/qlcq.json b/src/lib/runners/qlcq.json index da3339d27..2342afe6e 100644 --- a/src/lib/runners/qlcq.json +++ b/src/lib/runners/qlcq.json @@ -182,7 +182,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, diff --git a/src/lib/runners/qoms.json b/src/lib/runners/qoms.json index 54b9adf64..cfe847d42 100644 --- a/src/lib/runners/qoms.json +++ b/src/lib/runners/qoms.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/qrfw.json b/src/lib/runners/qrfw.json index 985544d90..6885418b0 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", @@ -113,7 +111,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/qrgc.json b/src/lib/runners/qrgc.json index 8ec2d02c7..e31c2e625 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", @@ -135,7 +133,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/qsnv.json b/src/lib/runners/qsnv.json index bc07b1823..849e86bc5 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", @@ -75,7 +73,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/qsoa.json b/src/lib/runners/qsoa.json index a9f4fd8a7..f5a669928 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 3 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/qwdg.json b/src/lib/runners/qwdg.json index 724653ac5..fdc90d2df 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/qxob.json b/src/lib/runners/qxob.json index b80f122d0..0246fae44 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", @@ -81,11 +79,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "d", @@ -164,6 +163,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 } ], diff --git a/src/lib/runners/qycx.json b/src/lib/runners/qycx.json index cc55c4a84..c046d6688 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", @@ -39,7 +37,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rakk.json b/src/lib/runners/rakk.json index eaf7a9fe2..983e7ca45 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": { @@ -61,7 +59,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rbup.json b/src/lib/runners/rbup.json index c522d3983..21c1db880 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", @@ -61,7 +59,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rdae.json b/src/lib/runners/rdae.json index d098ec2ea..54a8844ae 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", @@ -209,7 +207,10 @@ }, "type": "function", "meta": "minusOneEffect" - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rgta.json b/src/lib/runners/rgta.json index e9f5047a9..d6c62f1a4 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", @@ -33,7 +31,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 2 } ], "speed": 1, diff --git a/src/lib/runners/rhcv.json b/src/lib/runners/rhcv.json index f0ff6bf77..33cb0d941 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", @@ -80,7 +78,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/rhoa.json b/src/lib/runners/rhoa.json index 2eff7bda3..ab0773fbe 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", @@ -45,7 +43,10 @@ "bound": true }, "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rico.json b/src/lib/runners/rico.json index 582a9e596..072cdc8bf 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rivc.json b/src/lib/runners/rivc.json index 8c9f781d5..1f56d694d 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": { @@ -61,11 +59,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "g", @@ -90,7 +89,11 @@ "bound": true }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/rjfy.json b/src/lib/runners/rjfy.json index 080363d55..4d4c75e6f 100644 --- a/src/lib/runners/rjfy.json +++ b/src/lib/runners/rjfy.json @@ -49,7 +49,8 @@ }, "previouslyChangedExpressionState": "trueCaseActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/rjho.json b/src/lib/runners/rjho.json index 09fb4147d..0a6230fbc 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", @@ -153,7 +151,10 @@ "priority": 1 }, "type": "function" - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rjzw.json b/src/lib/runners/rjzw.json index 85d09f585..bc5f654fd 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": { @@ -181,7 +179,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -365,7 +366,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -549,7 +551,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -734,7 +737,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 }, { "expression": { @@ -966,7 +970,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { "expression": { @@ -1198,11 +1203,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1347,11 +1351,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -1497,11 +1503,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1647,11 +1654,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -1797,12 +1805,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -1948,11 +1957,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2098,11 +2108,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2214,11 +2225,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "b", @@ -2331,11 +2344,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "b", @@ -2448,11 +2462,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2565,12 +2580,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2683,11 +2699,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2800,11 +2817,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -2882,7 +2900,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/rlrs.json b/src/lib/runners/rlrs.json index c937fb3e2..95b94db3f 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", @@ -95,7 +93,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rnug.json b/src/lib/runners/rnug.json index 41926e629..cbd8f6f4f 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/roko.json b/src/lib/runners/roko.json index 067dd61f7..4be4d6407 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": { @@ -66,7 +64,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rqjo.json b/src/lib/runners/rqjo.json index 438c010de..f9a51ec09 100644 --- a/src/lib/runners/rqjo.json +++ b/src/lib/runners/rqjo.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -99,7 +100,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/rtza.json b/src/lib/runners/rtza.json index 6b441b29f..cf683ff6c 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", @@ -13,7 +11,10 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ruou.json b/src/lib/runners/ruou.json index b722fb28c..1ad82215a 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", @@ -45,7 +43,10 @@ "bound": true }, "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rviy.json b/src/lib/runners/rviy.json index 673b765e9..447342a35 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", @@ -34,7 +32,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rwuw.json b/src/lib/runners/rwuw.json index d3d6a21ff..2bc90e991 100644 --- a/src/lib/runners/rwuw.json +++ b/src/lib/runners/rwuw.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -331,7 +329,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 14, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/rypq.json b/src/lib/runners/rypq.json index b74594084..612acf4a5 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", @@ -81,6 +79,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 } ], diff --git a/src/lib/runners/ryqp.json b/src/lib/runners/ryqp.json index 5a64bf912..330c48db1 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", @@ -15,7 +13,10 @@ "bound": true, "shorthandNumber": 5, "shorthandNumberAfterConvert": "number" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/sdta.json b/src/lib/runners/sdta.json index 71e3b9a4c..270703e81 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", @@ -163,7 +161,10 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/seie.json b/src/lib/runners/seie.json index 378575576..5df4d9523 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 5 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/sgfj.json b/src/lib/runners/sgfj.json index c2a8c9977..7103dcfcf 100644 --- a/src/lib/runners/sgfj.json +++ b/src/lib/runners/sgfj.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -99,7 +100,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/sgnp.json b/src/lib/runners/sgnp.json index ed8e895c4..c77b01f63 100644 --- a/src/lib/runners/sgnp.json +++ b/src/lib/runners/sgnp.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/skoo.json b/src/lib/runners/skoo.json index 5fa0324b3..b2c2989b6 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", @@ -209,7 +207,10 @@ }, "type": "function", "meta": "minusOneEffect" - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/smdm.json b/src/lib/runners/smdm.json index 5bd7aa886..f992bae2c 100644 --- a/src/lib/runners/smdm.json +++ b/src/lib/runners/smdm.json @@ -182,7 +182,8 @@ }, "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 6 } ], "speed": 1, diff --git a/src/lib/runners/snlf.json b/src/lib/runners/snlf.json index 03d1a08de..de9345d8d 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": { @@ -552,11 +550,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 25 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "conditionActive", "expression": { "arg": { "arg": { @@ -1107,11 +1107,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 25 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "falseCaseActive", "expression": { "arg": { "arg": { @@ -1662,11 +1663,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "falseCaseActive", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 25 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -2183,11 +2185,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -2705,11 +2709,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "arg": { @@ -3227,11 +3232,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "arg": { @@ -3749,11 +3755,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -4271,12 +4278,13 @@ "type": "call", "priority": 1 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 4 + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -5140,11 +5148,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 37 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -6008,11 +6017,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 37 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -6668,11 +6678,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 29 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -7329,11 +7341,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 29 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -7990,12 +8003,13 @@ "type": "call", "priority": 1 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 4 + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 29 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -9017,11 +9031,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 44 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -10043,11 +10058,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 44 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -10670,11 +10686,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 28 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -11298,11 +11316,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 28 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -11926,12 +11945,13 @@ "type": "call", "priority": 1 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 4 + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 28 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -12678,11 +12698,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 34 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -13429,11 +13450,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 34 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -14084,11 +14106,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 30 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -14740,11 +14764,12 @@ "type": "call", "priority": 1 }, - "activePriority": 6 + "previouslyChangedExpressionState": "active", + "activePriority": 6, + "containerState": "stepped", + "numLeafNodes": 30 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -15375,11 +15400,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 6, + "containerState": "ready", + "numLeafNodes": 29 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -16011,11 +16038,12 @@ "type": "call", "priority": 1 }, - "activePriority": 5 + "previouslyChangedExpressionState": "active", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 29 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -16626,11 +16654,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 5, + "containerState": "ready", + "numLeafNodes": 28 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -17242,11 +17272,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "active", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 28 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -17836,7 +17867,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 27 } ], "speed": 1.75, diff --git a/src/lib/runners/spga.json b/src/lib/runners/spga.json index 4d8719096..3bf8832b1 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/spki.json b/src/lib/runners/spki.json index 19e435ae2..a37e014f5 100644 --- a/src/lib/runners/spki.json +++ b/src/lib/runners/spki.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -104,7 +102,10 @@ "priority": 2 }, "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/sskt.json b/src/lib/runners/sskt.json index 60d332942..9642eec0a 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": { @@ -135,7 +133,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/sucz.json b/src/lib/runners/sucz.json index 254f1924a..c246ddf95 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", @@ -39,7 +37,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/svbd.json b/src/lib/runners/svbd.json index 94f9f86d2..8becffe02 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": { @@ -303,11 +301,12 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -609,11 +608,12 @@ "type": "call", "priority": 4 }, + "numLeafNodes": 8, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -915,12 +915,13 @@ "type": "call", "priority": 4 }, + "numLeafNodes": 8, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -1222,11 +1223,12 @@ "type": "call", "priority": 4 }, + "numLeafNodes": 8, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -1452,11 +1454,13 @@ "state": "default", "type": "call", "priority": 3 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "arg": { @@ -1683,11 +1687,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -1914,12 +1919,13 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -2174,11 +2180,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -2433,11 +2440,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -2630,11 +2638,13 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -2828,11 +2838,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -3026,12 +3037,13 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 6, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -3273,11 +3285,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -3519,11 +3532,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 7, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -3683,7 +3697,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -3848,7 +3866,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { "expression": { @@ -4014,7 +4033,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { "expression": { @@ -4179,11 +4199,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "f", @@ -4242,7 +4261,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 2 } ], "speed": 1.5, diff --git a/src/lib/runners/sxnt.json b/src/lib/runners/sxnt.json index 0bbfd8015..30072cda9 100644 --- a/src/lib/runners/sxnt.json +++ b/src/lib/runners/sxnt.json @@ -76,7 +76,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/tfsi.json b/src/lib/runners/tfsi.json index f77424aa8..56260ac55 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", @@ -512,7 +510,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 23 } ], "speed": 1, diff --git a/src/lib/runners/thbw.json b/src/lib/runners/thbw.json index 6f09b45be..d0f54282c 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", @@ -27,7 +25,11 @@ "bound": true }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/thkn.json b/src/lib/runners/thkn.json index 54e4e3a7f..403c17e8c 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", @@ -81,7 +79,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -165,7 +166,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -249,7 +251,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -334,7 +337,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -418,7 +422,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { "expression": { @@ -502,11 +507,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -551,7 +555,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 }, { "expression": { @@ -601,7 +609,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -651,7 +660,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -702,7 +712,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -752,11 +763,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "d", "highlightType": "default", @@ -767,7 +777,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/tjaf.json b/src/lib/runners/tjaf.json index b55a990fd..39dc3c1bf 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", @@ -134,7 +132,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/toem.json b/src/lib/runners/toem.json index 5a83c9f6e..d840df6a9 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": { @@ -227,7 +225,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 12, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/tpyg.json b/src/lib/runners/tpyg.json index 4deb120c0..2c5713b1a 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": { @@ -338,7 +336,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 12, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/udxn.json b/src/lib/runners/udxn.json index e1dfe032b..6ac15b1a6 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", @@ -114,7 +112,10 @@ }, "type": "function", "meta": "plusOneEffect" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/uexo.json b/src/lib/runners/uexo.json index 50530b9fe..371351df8 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", @@ -148,11 +146,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -298,11 +297,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -448,12 +448,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -599,11 +600,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -749,11 +751,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -865,7 +868,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 4 } ], "speed": 1, diff --git a/src/lib/runners/ugvz.json b/src/lib/runners/ugvz.json index 63b046c7a..11e17d4ee 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": { @@ -338,11 +336,12 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 12, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -679,11 +678,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 12, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -1020,12 +1020,13 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 12, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -1448,11 +1449,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 15, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -1875,11 +1877,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 15, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -2182,7 +2185,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 11, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -2490,7 +2497,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { "expression": { @@ -2799,7 +2807,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { "expression": { @@ -3174,7 +3183,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 13 }, { "expression": { @@ -3549,11 +3559,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -3822,11 +3831,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -4096,11 +4107,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -4370,12 +4382,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -4645,11 +4658,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -4919,11 +4933,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -5159,11 +5174,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "c", @@ -5400,11 +5417,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -5641,12 +5659,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -5988,11 +6007,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -6334,11 +6354,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -6540,11 +6561,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -6747,11 +6770,12 @@ }, "type": "function" }, - "activePriority": 4 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -6954,12 +6978,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 4 + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -7162,11 +7187,12 @@ }, "type": "function" }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -7369,11 +7395,12 @@ }, "type": "function" }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -7542,11 +7569,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "c", @@ -7716,11 +7745,12 @@ }, "type": "function" }, - "activePriority": 4 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -7890,12 +7920,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 4 + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -8065,11 +8096,12 @@ }, "type": "function" }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -8239,11 +8271,12 @@ }, "type": "function" }, - "activePriority": 4 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -8378,7 +8411,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "done", + "numLeafNodes": 6 } ], "speed": 1.75, diff --git a/src/lib/runners/uhqo.json b/src/lib/runners/uhqo.json index 4019f94f8..c65ba6f9e 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", @@ -15,7 +13,10 @@ "bound": true, "shorthandNumber": 6, "shorthandNumberAfterConvert": "number" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/uiwl.json b/src/lib/runners/uiwl.json index b5bc80b6d..053cff0f1 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", @@ -68,7 +66,11 @@ "priority": 2 }, "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 }, { "expression": { @@ -139,7 +141,8 @@ }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 4 }, { "expression": { @@ -210,11 +213,10 @@ }, "previouslyChangedExpressionState": "falseCaseActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -247,7 +249,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 }, { "expression": { @@ -285,11 +291,10 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -301,7 +306,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 4 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/unxf.json b/src/lib/runners/unxf.json index 079f459be..1477743ec 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -97,7 +98,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -148,7 +150,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -198,11 +201,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "B", "highlightType": "default", @@ -213,7 +215,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/uppk.json b/src/lib/runners/uppk.json index 80be917e1..0bec7284f 100644 --- a/src/lib/runners/uppk.json +++ b/src/lib/runners/uppk.json @@ -82,7 +82,8 @@ }, "previouslyChangedExpressionState": "showFuncArg", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/uvmv.json b/src/lib/runners/uvmv.json index 12f757d52..8d5c3ce24 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": { @@ -61,7 +59,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/uwma.json b/src/lib/runners/uwma.json index 25fa81f98..3423f8479 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", @@ -81,11 +79,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -130,7 +129,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 } ], "speed": 1, diff --git a/src/lib/runners/uwyn.json b/src/lib/runners/uwyn.json index 4d658762c..9b47e3916 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", @@ -512,11 +510,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "conditionActive", "expression": { "arg": { "type": "conditional", @@ -1027,11 +1027,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "falseCaseActive", "expression": { "arg": { "type": "conditional", @@ -1542,11 +1543,12 @@ "type": "call", "priority": 1 }, - "activePriority": 2 + "previouslyChangedExpressionState": "falseCaseActive", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -2023,11 +2025,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 21 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -2505,11 +2509,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 21 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "arg": { @@ -2987,11 +2992,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 21 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "arg": { @@ -3469,11 +3475,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 21 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -3951,12 +3958,13 @@ "type": "call", "priority": 1 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 3 + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 21 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -4780,11 +4788,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 35 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -5608,11 +5617,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 35 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -6228,11 +6238,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 27 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -6849,11 +6861,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 27 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -7470,12 +7483,13 @@ "type": "call", "priority": 1 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 3 + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 27 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -8457,11 +8471,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 42 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -9443,11 +9458,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 42 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -10030,11 +10046,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 26 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -10618,11 +10636,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 26 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -11206,12 +11225,13 @@ "type": "call", "priority": 1 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 3 + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 26 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -11878,11 +11898,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 30 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -12549,11 +12570,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 30 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -13144,11 +13166,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 27 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -13740,11 +13764,12 @@ "type": "call", "priority": 1 }, - "activePriority": 4 + "previouslyChangedExpressionState": "active", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 27 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -14315,11 +14340,13 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 26 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "arg": { @@ -14891,11 +14918,12 @@ "type": "call", "priority": 1 }, - "activePriority": 3 + "previouslyChangedExpressionState": "active", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 26 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -15445,7 +15473,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 25 } ], "speed": 1.75, diff --git a/src/lib/runners/vcqp.json b/src/lib/runners/vcqp.json index ef81e4d79..790b88fce 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", @@ -114,7 +112,10 @@ }, "type": "function", "meta": "plusOneEffect" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/vdhd.json b/src/lib/runners/vdhd.json index 7397a66e2..8ba5d649c 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", @@ -81,11 +79,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "d", @@ -164,12 +163,13 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "d", @@ -248,11 +248,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "d", @@ -331,11 +332,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "d", @@ -380,7 +382,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -430,7 +436,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -480,7 +487,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -531,7 +539,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -581,11 +590,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "c", "highlightType": "default", @@ -596,7 +604,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/veft.json b/src/lib/runners/veft.json index 90ca19cba..cbc57478e 100644 --- a/src/lib/runners/veft.json +++ b/src/lib/runners/veft.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/vfdw.json b/src/lib/runners/vfdw.json index 48a9d39b7..3af6ccd9f 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": { @@ -201,11 +199,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -217,7 +216,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 3 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/vhte.json b/src/lib/runners/vhte.json index 9d7e05310..f3f50f335 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/vilr.json b/src/lib/runners/vilr.json index 27155bad7..4141a6cfa 100644 --- a/src/lib/runners/vilr.json +++ b/src/lib/runners/vilr.json @@ -82,7 +82,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/vlhb.json b/src/lib/runners/vlhb.json index 5c41c8ae0..745c93c71 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", @@ -163,7 +161,10 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/vlob.json b/src/lib/runners/vlob.json index b82745324..accd01472 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", @@ -99,11 +97,12 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 4, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -115,7 +114,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 3 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/vmkg.json b/src/lib/runners/vmkg.json index f7d503179..6d6b845d9 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/voeb.json b/src/lib/runners/voeb.json index 413892d34..519b7dc0a 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", @@ -39,7 +37,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/vowa.json b/src/lib/runners/vowa.json index 2185e11dc..e75417b55 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/vozu.json b/src/lib/runners/vozu.json index d9c4f4e96..479a031e5 100644 --- a/src/lib/runners/vozu.json +++ b/src/lib/runners/vozu.json @@ -49,7 +49,8 @@ }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/vqwp.json b/src/lib/runners/vqwp.json index 6b0a08e13..e1f2c4565 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/vqyl.json b/src/lib/runners/vqyl.json index 5c3e876af..4bfaca693 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", @@ -168,7 +166,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/vsvt.json b/src/lib/runners/vsvt.json index fee037942..c8786e19b 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", @@ -14,7 +12,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 8 - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/vvjn.json b/src/lib/runners/vvjn.json index 9adcc0c43..9d9acec91 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", @@ -13,7 +11,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/vwvb.json b/src/lib/runners/vwvb.json index 4b90fa194..31ccffc73 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", @@ -13,7 +11,10 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/wcer.json b/src/lib/runners/wcer.json index 6c67b9ed4..5befe8e8e 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", @@ -81,7 +79,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/wenx.json b/src/lib/runners/wenx.json index 1209b0116..9dc98e8c7 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": { @@ -181,7 +179,10 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/weoz.json b/src/lib/runners/weoz.json index 6f09b45be..d0f54282c 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", @@ -27,7 +25,11 @@ "bound": true }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/wgby.json b/src/lib/runners/wgby.json index ac8a51c04..4c25b65d6 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", @@ -315,7 +313,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/wjwu.json b/src/lib/runners/wjwu.json index 20a4ea6d4..fec8ba696 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": { @@ -74,7 +72,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 } ], "speed": 1, diff --git a/src/lib/runners/wopl.json b/src/lib/runners/wopl.json index d7d91c459..088d7f7f4 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", @@ -80,7 +78,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/wqml.json b/src/lib/runners/wqml.json index 9e576b128..a3b8c9b99 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", @@ -81,6 +79,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 } diff --git a/src/lib/runners/wtup.json b/src/lib/runners/wtup.json index dbb9fe1c5..335915598 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": { @@ -61,7 +59,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/wunw.json b/src/lib/runners/wunw.json index 8a4fcdec0..02437a0a6 100644 --- a/src/lib/runners/wunw.json +++ b/src/lib/runners/wunw.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -98,7 +99,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -149,7 +151,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -199,7 +202,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -249,11 +253,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "b", "highlightType": "default", @@ -264,7 +267,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/wwtl.json b/src/lib/runners/wwtl.json index 69cc6a5f4..3b60858c7 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", @@ -81,11 +79,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "d", @@ -164,6 +163,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 } diff --git a/src/lib/runners/wzqv.json b/src/lib/runners/wzqv.json index 5c33bec32..34926442d 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": { @@ -319,11 +317,12 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 11, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -641,11 +640,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 11, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -963,12 +963,13 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 11, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -1372,11 +1373,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 14, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -1780,11 +1782,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 14, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -2068,7 +2071,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -2357,7 +2364,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 10 }, { "expression": { @@ -2647,7 +2655,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 10 }, { "expression": { @@ -3003,7 +3012,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 12 }, { "expression": { @@ -3359,11 +3369,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -3613,11 +3622,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -3868,11 +3879,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -4123,12 +4135,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -4637,11 +4650,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 18 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -5150,11 +5164,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 18 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -5543,11 +5558,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 14 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -5937,11 +5954,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -6331,12 +6349,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -6726,11 +6745,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -7120,11 +7140,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -7479,11 +7500,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 13 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -7839,11 +7862,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -8199,12 +8223,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -8560,11 +8585,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -8920,11 +8946,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 13 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -9246,11 +9273,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "c", @@ -9573,11 +9602,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -9900,12 +9930,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -10438,11 +10469,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 20 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -10975,11 +11007,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 20 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -11267,11 +11300,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 11 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -11560,11 +11595,12 @@ }, "type": "function" }, - "activePriority": 3 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -11853,12 +11889,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 3 + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -12147,11 +12184,12 @@ }, "type": "function" }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -12440,11 +12478,12 @@ }, "type": "function" }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -12699,11 +12738,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "c", @@ -12959,11 +13000,12 @@ }, "type": "function" }, - "activePriority": 3 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -13219,12 +13261,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 3 + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 10 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -13585,11 +13628,12 @@ }, "type": "function" }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -13950,11 +13994,12 @@ }, "type": "function" }, - "activePriority": 3 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 14 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -14175,11 +14220,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "c", @@ -14401,11 +14448,12 @@ }, "type": "function" }, - "activePriority": 5 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -14627,12 +14675,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 5 + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -14854,11 +14903,12 @@ }, "type": "function" }, - "activePriority": 5 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -15080,11 +15130,12 @@ }, "type": "function" }, - "activePriority": 5 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -15272,11 +15323,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 5, + "containerState": "ready", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "c", @@ -15465,11 +15518,12 @@ }, "type": "function" }, - "activePriority": 5 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "c", @@ -15658,12 +15712,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 5 + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "c", @@ -15852,11 +15907,12 @@ }, "type": "function" }, - "activePriority": 5 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "c", @@ -16045,11 +16101,12 @@ }, "type": "function" }, - "activePriority": 5 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 5, + "containerState": "stepped", + "numLeafNodes": 8 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -16203,7 +16260,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 5, + "containerState": "done", + "numLeafNodes": 7 } ], "speed": 1.75, diff --git a/src/lib/runners/xbki.json b/src/lib/runners/xbki.json index 6a4235f6d..2dce8f598 100644 --- a/src/lib/runners/xbki.json +++ b/src/lib/runners/xbki.json @@ -1,8 +1,6 @@ { "expressionContainers": [ { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -334,11 +332,12 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 14, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "shorthandNumber", @@ -671,11 +670,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 14, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -1114,11 +1114,13 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 19, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "shorthandNumber", @@ -1558,11 +1560,12 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 19, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -2161,11 +2164,13 @@ "state": "default", "type": "call", "priority": 3 - } + }, + "numLeafNodes": 26, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "arg": { "name": "shorthandNumber", @@ -2765,11 +2770,12 @@ "type": "call", "priority": 3 }, + "numLeafNodes": 26, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 1 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "shorthandNumber", @@ -3335,7 +3341,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 25, + "containerState": "ready", + "previouslyChangedExpressionState": "default", + "activePriority": 1 }, { "expression": { @@ -3906,11 +3916,10 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 25 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -4444,11 +4453,13 @@ "priority": 6 }, "priority": 2 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 24 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "conditional", "state": "default", @@ -4983,11 +4994,12 @@ }, "priority": 2 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 24 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "conditional", "state": "default", @@ -5500,7 +5512,11 @@ "priority": 5 }, "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 23 }, { "expression": { @@ -6018,11 +6034,10 @@ }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 23 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -6502,11 +6517,13 @@ }, "state": "default", "priority": 4 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 21 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -6987,11 +7004,12 @@ "state": "default", "priority": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 21 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -7631,11 +7649,13 @@ }, "state": "default", "priority": 5 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 28 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -8276,11 +8296,12 @@ "state": "default", "priority": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 28 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -8887,11 +8908,13 @@ }, "state": "default", "priority": 3 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 27 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -9499,11 +9522,12 @@ "state": "default", "priority": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 27 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -10118,11 +10142,13 @@ }, "state": "default", "priority": 10 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 28 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -10738,11 +10764,12 @@ "state": "default", "priority": 10 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 28 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -11337,11 +11364,13 @@ }, "state": "default", "priority": 9 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 27 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -11937,11 +11966,12 @@ "state": "default", "priority": 9 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 27 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -12515,11 +12545,13 @@ }, "state": "default", "priority": 8 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 26 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "conditionActive", "expression": { "type": "binary", "binaryType": "multiply", @@ -13094,11 +13126,12 @@ "state": "default", "priority": 8 }, - "activePriority": 1 + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 26 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -13639,11 +13672,13 @@ }, "state": "default", "priority": 7 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 24 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -14185,11 +14220,12 @@ "state": "default", "priority": 7 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 24 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -14890,11 +14926,13 @@ }, "state": "default", "priority": 8 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 31 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -15596,11 +15634,12 @@ "state": "default", "priority": 8 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 31 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -16268,11 +16307,13 @@ }, "state": "default", "priority": 6 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 30 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -16941,11 +16982,12 @@ "state": "default", "priority": 6 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 30 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -17661,11 +17703,13 @@ }, "state": "default", "priority": 15 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 33 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -18382,11 +18426,12 @@ "state": "default", "priority": 15 }, - "activePriority": 3 + "previouslyChangedExpressionState": "active", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 33 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -19082,11 +19127,13 @@ }, "state": "default", "priority": 14 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 32 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -19783,11 +19830,12 @@ "state": "default", "priority": 14 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 32 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -20463,11 +20511,13 @@ }, "state": "default", "priority": 13 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 31 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -21144,11 +21194,12 @@ "state": "default", "priority": 13 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 31 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -21803,11 +21854,13 @@ }, "state": "default", "priority": 12 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 30 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "conditionActive", "expression": { "type": "binary", "binaryType": "multiply", @@ -22463,11 +22516,12 @@ "state": "default", "priority": 12 }, - "activePriority": 1 + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 30 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -23089,11 +23143,13 @@ }, "state": "default", "priority": 11 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 28 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -23716,11 +23772,12 @@ "state": "default", "priority": 11 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 28 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -24502,11 +24559,13 @@ }, "state": "default", "priority": 12 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 35 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -25289,11 +25348,12 @@ "state": "default", "priority": 12 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 35 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -26042,11 +26102,13 @@ }, "state": "default", "priority": 10 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 34 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -26796,11 +26858,12 @@ "state": "default", "priority": 10 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 34 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -27637,11 +27700,13 @@ }, "state": "default", "priority": 21 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 39 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -28479,11 +28544,12 @@ "state": "default", "priority": 21 }, - "activePriority": 4 + "previouslyChangedExpressionState": "active", + "activePriority": 4, + "containerState": "stepped", + "numLeafNodes": 39 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -29300,11 +29366,13 @@ }, "state": "default", "priority": 20 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 4, + "containerState": "ready", + "numLeafNodes": 38 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -30122,11 +30190,12 @@ "state": "default", "priority": 20 }, - "activePriority": 3 + "previouslyChangedExpressionState": "active", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 38 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -30923,11 +30992,13 @@ }, "state": "default", "priority": 19 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 37 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -31725,11 +31796,12 @@ "state": "default", "priority": 19 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 37 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -32506,11 +32578,13 @@ }, "state": "default", "priority": 18 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 36 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -33288,11 +33362,12 @@ "state": "default", "priority": 18 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 36 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -34048,11 +34123,13 @@ }, "state": "default", "priority": 17 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 35 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "conditionActive", "expression": { "type": "binary", "binaryType": "multiply", @@ -34809,11 +34886,12 @@ "state": "default", "priority": 17 }, - "activePriority": 1 + "previouslyChangedExpressionState": "conditionActive", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 35 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -34949,11 +35027,13 @@ }, "state": "default", "priority": 6 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -35090,11 +35170,12 @@ "state": "default", "priority": 6 }, - "activePriority": 3 + "previouslyChangedExpressionState": "active", + "activePriority": 3, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -35210,11 +35291,13 @@ }, "state": "default", "priority": 5 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 3, + "containerState": "ready", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -35331,11 +35414,12 @@ "state": "default", "priority": 5 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -35431,11 +35515,13 @@ }, "state": "default", "priority": 4 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -35532,11 +35618,12 @@ "state": "default", "priority": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -35611,11 +35698,13 @@ }, "state": "default", "priority": 3 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -35691,11 +35780,12 @@ "state": "default", "priority": 3 }, - "activePriority": 2 + "previouslyChangedExpressionState": "active", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -35750,11 +35840,13 @@ }, "state": "default", "priority": 2 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 3 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "active", "expression": { "type": "binary", "binaryType": "multiply", @@ -35810,11 +35902,12 @@ "state": "default", "priority": 2 }, - "activePriority": 1 + "previouslyChangedExpressionState": "active", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 3 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "type": "binary", "binaryType": "multiply", @@ -35848,7 +35941,11 @@ }, "state": "default", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 2 }, { "expression": { @@ -35887,11 +35984,10 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "type": "variable", "name": "shorthandNumber", @@ -35903,7 +35999,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "shorthandNumber": 24 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 4, diff --git a/src/lib/runners/xhdq.json b/src/lib/runners/xhdq.json index 2a90193ba..20dfc6ea5 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": { @@ -319,11 +317,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 11, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -335,7 +334,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 4 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/xhul.json b/src/lib/runners/xhul.json index 808295452..f6df5aeb5 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", @@ -311,7 +309,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/xjzx.json b/src/lib/runners/xjzx.json index b0d887e8f..e20af1d54 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", @@ -153,7 +151,10 @@ "priority": 1 }, "type": "function" - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/xkcm.json b/src/lib/runners/xkcm.json index 54e3e5ab0..ef9071f16 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", @@ -137,7 +135,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/xlgb.json b/src/lib/runners/xlgb.json index b6606615b..c72acf2d8 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": { @@ -175,7 +173,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 9, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/xmqp.json b/src/lib/runners/xmqp.json index faeadc5af..1b0bff598 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", @@ -35,11 +33,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -51,7 +50,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/xpks.json b/src/lib/runners/xpks.json index 9b51dc1b4..e8aca2d28 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", @@ -39,7 +37,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/xqjd.json b/src/lib/runners/xqjd.json index 8f8ba8d99..459bf9f1a 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", @@ -230,7 +228,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 7, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/xusi.json b/src/lib/runners/xusi.json index e6c16f475..e5c5e1642 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", @@ -143,11 +141,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "name": "b", @@ -288,7 +287,10 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 } ], "speed": 1, diff --git a/src/lib/runners/xwzc.json b/src/lib/runners/xwzc.json index 907164a24..8c0ff2189 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", @@ -80,7 +78,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/xxan.json b/src/lib/runners/xxan.json index ee150bf7a..1bbaf535f 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", @@ -135,7 +133,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/yabb.json b/src/lib/runners/yabb.json index 7f8a1e5a5..29a1c959f 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", @@ -81,6 +79,9 @@ "type": "call", "priority": 2 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 } ], diff --git a/src/lib/runners/ybne.json b/src/lib/runners/ybne.json index 4c7c541e7..78211179d 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": { @@ -181,7 +179,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ycpk.json b/src/lib/runners/ycpk.json index 025c3593f..d3730740e 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", @@ -164,7 +162,10 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ycxr.json b/src/lib/runners/ycxr.json index 8603fd082..6d8d46ffa 100644 --- a/src/lib/runners/ycxr.json +++ b/src/lib/runners/ycxr.json @@ -62,7 +62,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/yfwd.json b/src/lib/runners/yfwd.json index 86f146016..21cdc52c2 100644 --- a/src/lib/runners/yfwd.json +++ b/src/lib/runners/yfwd.json @@ -82,7 +82,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 3 } ], "speed": 1, diff --git a/src/lib/runners/yiri.json b/src/lib/runners/yiri.json index a0511def3..6954b618d 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", @@ -13,7 +11,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/yjur.json b/src/lib/runners/yjur.json index 2e93565a5..53b4caedd 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": { @@ -95,11 +93,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -111,7 +110,11 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/ykqf.json b/src/lib/runners/ykqf.json index 252910724..7518ce96f 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", @@ -47,7 +45,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ylav.json b/src/lib/runners/ylav.json index fb8a910bd..d0c433321 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": { @@ -276,7 +274,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/ynoy.json b/src/lib/runners/ynoy.json index 1d3a8d403..b1effda6e 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": { @@ -466,7 +464,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 15, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -935,7 +936,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 15 }, { "expression": { @@ -1405,7 +1407,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 15 }, { "expression": { @@ -2046,7 +2049,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 21 }, { "expression": { @@ -2687,11 +2691,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 21 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -3207,11 +3210,13 @@ "state": "default", "type": "call", "priority": 4 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 17 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -3728,11 +3733,12 @@ "type": "call", "priority": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 17 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -4249,12 +4255,13 @@ "type": "call", "priority": 4 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 17 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -4897,11 +4904,12 @@ "type": "call", "priority": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 17 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -5544,11 +5552,12 @@ "type": "call", "priority": 4 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 17 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -6115,11 +6124,13 @@ "state": "default", "type": "call", "priority": 3 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 16 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -6687,11 +6698,12 @@ "type": "call", "priority": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 16 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -7259,12 +7271,13 @@ "type": "call", "priority": 3 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 16 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -7860,11 +7873,12 @@ "type": "call", "priority": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 16 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -8460,11 +8474,12 @@ "type": "call", "priority": 3 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 16 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -8997,11 +9012,13 @@ "state": "default", "type": "call", "priority": 5 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 15 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -9535,11 +9552,12 @@ "type": "call", "priority": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 15 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "arg": { @@ -10073,11 +10091,12 @@ "type": "call", "priority": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 15 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "alphaConvertDone", "expression": { "arg": { "arg": { @@ -10611,11 +10630,12 @@ "type": "call", "priority": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "alphaConvertDone", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 15 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -11149,12 +11169,13 @@ "type": "call", "priority": 5 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 15 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -11688,11 +11709,12 @@ "type": "call", "priority": 5 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 15 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -12042,11 +12064,13 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "arg": { @@ -12397,11 +12421,12 @@ "type": "call", "priority": 2 }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -12752,12 +12777,13 @@ "type": "call", "priority": 2 }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -13108,11 +13134,12 @@ "type": "call", "priority": 2 }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 12 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -13362,7 +13389,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 9 }, { "expression": { @@ -13617,7 +13648,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -13873,7 +13905,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -14334,7 +14367,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 16 }, { "expression": { @@ -14795,11 +14829,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 16 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "arg": { @@ -15016,7 +15049,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 8 }, { "expression": { @@ -15238,7 +15275,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -15461,7 +15499,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -15769,7 +15808,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { "expression": { @@ -16077,11 +16117,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 11 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "j", @@ -16264,11 +16303,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "j", @@ -16452,11 +16493,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "j", @@ -16640,12 +16682,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "j", @@ -16829,11 +16872,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "j", @@ -17017,11 +17061,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "j", @@ -17171,11 +17216,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "ready", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "name": "j", @@ -17326,11 +17373,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "showFuncBound", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "j", @@ -17481,12 +17529,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 2 + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "j", @@ -17637,11 +17686,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "j", @@ -17792,11 +17842,12 @@ }, "type": "function" }, - "activePriority": 2 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 2, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "j", @@ -17912,7 +17963,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 5 } ], "speed": 4, diff --git a/src/lib/runners/ysxf.json b/src/lib/runners/ysxf.json index d45a43bfd..58b845267 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": { @@ -187,7 +185,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 10, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/yxel.json b/src/lib/runners/yxel.json index d30f9e04a..6839ff698 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", @@ -13,7 +11,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/yyfi.json b/src/lib/runners/yyfi.json index 7ad43ba5e..111269eb4 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", @@ -107,7 +105,10 @@ "priority": 2 }, "priority": 1 - } + }, + "numLeafNodes": 6, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/zahd.json b/src/lib/runners/zahd.json index c7e32c577..e2920409d 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", @@ -95,11 +93,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "shorthandNumber", "highlightType": "default", @@ -111,7 +110,10 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1 - } + }, + "numLeafNodes": 1, + "containerState": "done", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/zdpf.json b/src/lib/runners/zdpf.json index c4c2e85fa..f71a40de3 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", @@ -48,7 +46,10 @@ "shorthandNumber": 2 }, "priority": 1 - } + }, + "numLeafNodes": 3, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/zemy.json b/src/lib/runners/zemy.json index 1e772af1f..1ea6c5f10 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": { @@ -67,11 +65,12 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "active", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncBound", "expression": { "arg": { "arg": { @@ -136,11 +135,12 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "showFuncBound", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "arg": { @@ -205,12 +205,13 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "arg": { @@ -275,11 +276,12 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 2 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "arg": { @@ -344,11 +346,12 @@ "type": "call", "priority": 1 }, + "numLeafNodes": 3, + "containerState": "stepped", + "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "c", @@ -379,7 +382,11 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "done", + "previouslyChangedExpressionState": "default", + "activePriority": 2 } ], "speed": 1, diff --git a/src/lib/runners/zkon.json b/src/lib/runners/zkon.json index a4d459ddf..e020ff475 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", @@ -311,7 +309,10 @@ "state": "default", "type": "call", "priority": 2 - } + }, + "numLeafNodes": 13, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/zlrx.json b/src/lib/runners/zlrx.json index 213c76945..9535bca69 100644 --- a/src/lib/runners/zlrx.json +++ b/src/lib/runners/zlrx.json @@ -76,7 +76,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -154,7 +155,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -233,7 +235,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -311,11 +314,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "a", @@ -354,7 +356,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/zsxo.json b/src/lib/runners/zsxo.json index f60570611..247953557 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", @@ -99,7 +97,11 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 2, + "containerState": "done", + "numLeafNodes": 4 } ], "speed": 1, diff --git a/src/lib/runners/zuus.json b/src/lib/runners/zuus.json index cae49c052..1933f8ad0 100644 --- a/src/lib/runners/zuus.json +++ b/src/lib/runners/zuus.json @@ -62,7 +62,8 @@ }, "previouslyChangedExpressionState": "active", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -126,7 +127,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -191,7 +193,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { "expression": { @@ -255,11 +258,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "i", "highlightType": "default", @@ -270,7 +272,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/zwpj.json b/src/lib/runners/zwpj.json index 203bf204a..46e8af20a 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", @@ -47,11 +45,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "d", "highlightType": "default", @@ -62,7 +61,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, diff --git a/src/lib/runners/zwut.json b/src/lib/runners/zwut.json index 94e0722b0..875801bee 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": { @@ -276,7 +274,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 8, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { "expression": { @@ -555,7 +556,8 @@ }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -835,7 +837,8 @@ "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 8 }, { "expression": { @@ -1162,7 +1165,8 @@ }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { "expression": { @@ -1489,11 +1493,10 @@ }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -1733,11 +1736,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -1978,11 +1983,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -2223,12 +2229,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 7 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -2536,11 +2543,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -2848,11 +2856,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 9 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -3059,11 +3068,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -3271,11 +3282,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -3483,12 +3495,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -3710,11 +3723,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -3936,11 +3950,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 6 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -4113,11 +4128,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -4291,11 +4308,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewBefore", "expression": { "arg": { "name": "b", @@ -4469,12 +4487,13 @@ }, "type": "function" }, + "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, - "activePriority": 1 + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewAfter", "expression": { "arg": { "name": "b", @@ -4662,11 +4681,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewAfter", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "betaReducePreviewCrossed", "expression": { "arg": { "name": "b", @@ -4854,11 +4874,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "betaReducePreviewCrossed", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 5 }, { - "containerState": "ready", - "previouslyChangedExpressionState": "default", "expression": { "arg": { "name": "b", @@ -4998,11 +5019,13 @@ "type": "function" }, "type": "function" - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "ready", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "showFuncUnbound", "expression": { "arg": { "name": "b", @@ -5143,11 +5166,12 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "showFuncUnbound", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 }, { - "containerState": "stepped", - "previouslyChangedExpressionState": "needsAlphaConvert", "expression": { "arg": { "name": "b", @@ -5288,7 +5312,10 @@ }, "type": "function" }, - "activePriority": 1 + "previouslyChangedExpressionState": "needsAlphaConvert", + "activePriority": 1, + "containerState": "stepped", + "numLeafNodes": 4 } ], "speed": 1.25, diff --git a/src/lib/runners/zwvj.json b/src/lib/runners/zwvj.json index 2b7d8fd40..7bfebfa86 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": { @@ -295,7 +293,10 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 9, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/zxkq.json b/src/lib/runners/zxkq.json index 38d6e7ee5..8d9e6d652 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", @@ -118,7 +116,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 5, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/zzhq.json b/src/lib/runners/zzhq.json index 7d834056b..97fcc081b 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", @@ -41,7 +39,10 @@ "type": "function" }, "type": "function" - } + }, + "numLeafNodes": 1, + "containerState": "ready", + "previouslyChangedExpressionState": "default" } ], "speed": 1, diff --git a/src/lib/runners/zzxj.json b/src/lib/runners/zzxj.json index 72aacd8aa..592dbb331 100644 --- a/src/lib/runners/zzxj.json +++ b/src/lib/runners/zzxj.json @@ -48,7 +48,8 @@ }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, - "containerState": "stepped" + "containerState": "stepped", + "numLeafNodes": 2 } ], "speed": 1, diff --git a/src/lib/runners/zzyu.json b/src/lib/runners/zzyu.json index cd1e96ecc..f34a30340 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", @@ -47,11 +45,12 @@ "state": "default", "type": "call", "priority": 1 - } + }, + "numLeafNodes": 2, + "containerState": "ready", + "previouslyChangedExpressionState": "default" }, { - "containerState": "done", - "previouslyChangedExpressionState": "default", "expression": { "name": "l", "highlightType": "default", @@ -62,7 +61,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true - } + }, + "previouslyChangedExpressionState": "default", + "activePriority": 1, + "containerState": "done", + "numLeafNodes": 1 } ], "speed": 1, From 88293726ab32a711c3a7c74a80242b49d9f69a0d Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 18:07:16 -0700 Subject: [PATCH 16/36] Take shorthandNumberAfterConvert into account --- scripts/lib/calculateNumLeafNodes.ts | 6 +++- src/lib/runners/aone.json | 2 +- src/lib/runners/avcu.json | 2 +- src/lib/runners/bgko.json | 2 +- src/lib/runners/bndi.json | 2 +- src/lib/runners/dewi.json | 2 +- src/lib/runners/eweo.json | 2 +- src/lib/runners/fton.json | 2 +- src/lib/runners/gpat.json | 48 ++++++++++++++-------------- src/lib/runners/hhjq.json | 2 +- src/lib/runners/hvfb.json | 2 +- src/lib/runners/jbqw.json | 2 +- src/lib/runners/jiua.json | 2 +- src/lib/runners/jtxf.json | 2 +- src/lib/runners/kiiq.json | 2 +- src/lib/runners/mlnt.json | 2 +- src/lib/runners/nmrp.json | 38 +++++++++++----------- src/lib/runners/nvdn.json | 2 +- src/lib/runners/omwd.json | 2 +- src/lib/runners/psyv.json | 2 +- src/lib/runners/qrgc.json | 2 +- src/lib/runners/ryqp.json | 2 +- src/lib/runners/sdta.json | 2 +- src/lib/runners/tjaf.json | 2 +- src/lib/runners/uhqo.json | 2 +- src/lib/runners/vlhb.json | 2 +- src/lib/runners/vqyl.json | 2 +- src/lib/runners/xqjd.json | 2 +- src/lib/runners/xxan.json | 2 +- src/lib/runners/ycpk.json | 2 +- 30 files changed, 75 insertions(+), 71 deletions(-) diff --git a/scripts/lib/calculateNumLeafNodes.ts b/scripts/lib/calculateNumLeafNodes.ts index 9a64a96cb..430c43a69 100644 --- a/scripts/lib/calculateNumLeafNodes.ts +++ b/scripts/lib/calculateNumLeafNodes.ts @@ -9,7 +9,11 @@ import { Expression } from 'src/types/ExpressionTypes' export default function calculateNumLeafNodes(expression: Expression): number { if (isVariable(expression)) { - return 1 + if (expression.shorthandNumberAfterConvert !== undefined) { + return 2 + } else { + return 1 + } } else if (isCall(expression)) { return ( calculateNumLeafNodes(expression.arg) + diff --git a/src/lib/runners/aone.json b/src/lib/runners/aone.json index 122f811f2..47b0cb4f3 100644 --- a/src/lib/runners/aone.json +++ b/src/lib/runners/aone.json @@ -135,7 +135,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 5, + "numLeafNodes": 6, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/avcu.json b/src/lib/runners/avcu.json index 66dbf6233..26318388a 100644 --- a/src/lib/runners/avcu.json +++ b/src/lib/runners/avcu.json @@ -133,7 +133,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 5, + "numLeafNodes": 6, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/bgko.json b/src/lib/runners/bgko.json index 3792bf480..67b1b9c2e 100644 --- a/src/lib/runners/bgko.json +++ b/src/lib/runners/bgko.json @@ -228,7 +228,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 7, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/bndi.json b/src/lib/runners/bndi.json index 1abc034c6..2ba340837 100644 --- a/src/lib/runners/bndi.json +++ b/src/lib/runners/bndi.json @@ -13,7 +13,7 @@ "bound": true, "shorthandNumberAfterConvert": "trueCase" }, - "numLeafNodes": 1, + "numLeafNodes": 2, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/dewi.json b/src/lib/runners/dewi.json index ac993897b..fccc22965 100644 --- a/src/lib/runners/dewi.json +++ b/src/lib/runners/dewi.json @@ -134,7 +134,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 5, + "numLeafNodes": 6, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/eweo.json b/src/lib/runners/eweo.json index 64fc66c54..6938d6272 100644 --- a/src/lib/runners/eweo.json +++ b/src/lib/runners/eweo.json @@ -133,7 +133,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 5, + "numLeafNodes": 6, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/fton.json b/src/lib/runners/fton.json index 84c5126e3..b23d32ece 100644 --- a/src/lib/runners/fton.json +++ b/src/lib/runners/fton.json @@ -162,7 +162,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 5, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/gpat.json b/src/lib/runners/gpat.json index 5b0a66045..637b1fec4 100644 --- a/src/lib/runners/gpat.json +++ b/src/lib/runners/gpat.json @@ -209,7 +209,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 6, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" }, @@ -422,7 +422,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 6, + "numLeafNodes": 8, "containerState": "stepped", "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 @@ -636,7 +636,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 6, + "numLeafNodes": 8, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -893,7 +893,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 6, + "numLeafNodes": 8, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 @@ -1149,7 +1149,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 6, + "numLeafNodes": 8, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 @@ -1330,7 +1330,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 5, + "numLeafNodes": 7, "containerState": "ready", "previouslyChangedExpressionState": "default", "activePriority": 1 @@ -1511,7 +1511,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 5, + "numLeafNodes": 7, "containerState": "stepped", "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 @@ -1692,7 +1692,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 5, + "numLeafNodes": 7, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -1902,7 +1902,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 5, + "numLeafNodes": 7, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 @@ -2111,7 +2111,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 5, + "numLeafNodes": 7, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 @@ -2258,7 +2258,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 4, + "numLeafNodes": 6, "containerState": "ready", "previouslyChangedExpressionState": "default", "activePriority": 1 @@ -2405,7 +2405,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 4, + "numLeafNodes": 6, "containerState": "stepped", "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 @@ -2552,7 +2552,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 4, + "numLeafNodes": 6, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, @@ -2700,7 +2700,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 4, + "numLeafNodes": 6, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 @@ -2786,7 +2786,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 3, + "numLeafNodes": 5, "containerState": "ready", "previouslyChangedExpressionState": "default", "activePriority": 1 @@ -2872,7 +2872,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 3, + "numLeafNodes": 5, "containerState": "stepped", "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 @@ -2958,7 +2958,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 3, + "numLeafNodes": 5, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, @@ -3045,7 +3045,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 3, + "numLeafNodes": 5, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 @@ -3097,7 +3097,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 2, + "numLeafNodes": 3, "containerState": "ready", "previouslyChangedExpressionState": "default", "activePriority": 1 @@ -3152,7 +3152,7 @@ "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, "containerState": "stepped", - "numLeafNodes": 2 + "numLeafNodes": 3 }, { "expression": { @@ -3205,7 +3205,7 @@ "matchExists": true, "activePriority": 1, "containerState": "stepped", - "numLeafNodes": 2 + "numLeafNodes": 3 }, { "expression": { @@ -3258,7 +3258,7 @@ "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, "containerState": "stepped", - "numLeafNodes": 2 + "numLeafNodes": 4 }, { "expression": { @@ -3311,7 +3311,7 @@ "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, "containerState": "stepped", - "numLeafNodes": 2 + "numLeafNodes": 4 }, { "expression": { @@ -3329,7 +3329,7 @@ "previouslyChangedExpressionState": "default", "activePriority": 1, "containerState": "done", - "numLeafNodes": 1 + "numLeafNodes": 2 } ], "speed": 1.25, diff --git a/src/lib/runners/hhjq.json b/src/lib/runners/hhjq.json index 9a06ccfa6..e82919a94 100644 --- a/src/lib/runners/hhjq.json +++ b/src/lib/runners/hhjq.json @@ -162,7 +162,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 5, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/hvfb.json b/src/lib/runners/hvfb.json index bb10a5850..c4198a431 100644 --- a/src/lib/runners/hvfb.json +++ b/src/lib/runners/hvfb.json @@ -186,7 +186,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 7, + "numLeafNodes": 9, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/jbqw.json b/src/lib/runners/jbqw.json index 5d9b9ae66..98f6cac5e 100644 --- a/src/lib/runners/jbqw.json +++ b/src/lib/runners/jbqw.json @@ -165,7 +165,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 5, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/jiua.json b/src/lib/runners/jiua.json index 42cba3db1..cc44f97f7 100644 --- a/src/lib/runners/jiua.json +++ b/src/lib/runners/jiua.json @@ -135,7 +135,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 5, + "numLeafNodes": 6, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/jtxf.json b/src/lib/runners/jtxf.json index a24ce53cc..c8cb3cdc7 100644 --- a/src/lib/runners/jtxf.json +++ b/src/lib/runners/jtxf.json @@ -53,7 +53,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 3, + "numLeafNodes": 5, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/kiiq.json b/src/lib/runners/kiiq.json index dcbe9ce17..35e9a1326 100644 --- a/src/lib/runners/kiiq.json +++ b/src/lib/runners/kiiq.json @@ -13,7 +13,7 @@ "bound": true, "shorthandNumberAfterConvert": "falseCase" }, - "numLeafNodes": 1, + "numLeafNodes": 2, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/mlnt.json b/src/lib/runners/mlnt.json index 7d12993c7..5d7a037d8 100644 --- a/src/lib/runners/mlnt.json +++ b/src/lib/runners/mlnt.json @@ -188,7 +188,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 7, + "numLeafNodes": 9, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/nmrp.json b/src/lib/runners/nmrp.json index 3eb9ce425..6468baa4a 100644 --- a/src/lib/runners/nmrp.json +++ b/src/lib/runners/nmrp.json @@ -189,7 +189,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 5, + "numLeafNodes": 7, "containerState": "ready", "previouslyChangedExpressionState": "default" }, @@ -382,7 +382,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 5, + "numLeafNodes": 7, "containerState": "stepped", "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 @@ -576,7 +576,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 5, + "numLeafNodes": 7, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, @@ -771,7 +771,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 5, + "numLeafNodes": 7, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 @@ -890,7 +890,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 4, + "numLeafNodes": 6, "containerState": "ready", "previouslyChangedExpressionState": "default", "activePriority": 1 @@ -1009,7 +1009,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 4, + "numLeafNodes": 6, "containerState": "stepped", "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1 @@ -1128,7 +1128,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 4, + "numLeafNodes": 6, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -1276,7 +1276,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 4, + "numLeafNodes": 6, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 @@ -1423,7 +1423,7 @@ "type": "call", "priority": 3 }, - "numLeafNodes": 4, + "numLeafNodes": 6, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 @@ -1509,7 +1509,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 3, + "numLeafNodes": 5, "containerState": "ready", "previouslyChangedExpressionState": "default", "activePriority": 1 @@ -1595,7 +1595,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 3, + "numLeafNodes": 5, "containerState": "stepped", "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1 @@ -1681,7 +1681,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 3, + "numLeafNodes": 5, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -1769,7 +1769,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 3, + "numLeafNodes": 6, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1 @@ -1856,7 +1856,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 3, + "numLeafNodes": 6, "containerState": "stepped", "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1 @@ -1909,7 +1909,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 2, + "numLeafNodes": 4, "containerState": "ready", "previouslyChangedExpressionState": "default", "activePriority": 1 @@ -1965,7 +1965,7 @@ "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, "containerState": "stepped", - "numLeafNodes": 2 + "numLeafNodes": 4 }, { "expression": { @@ -2019,7 +2019,7 @@ "matchExists": false, "activePriority": 1, "containerState": "stepped", - "numLeafNodes": 2 + "numLeafNodes": 4 }, { "expression": { @@ -2072,7 +2072,7 @@ "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, "containerState": "stepped", - "numLeafNodes": 2 + "numLeafNodes": 4 }, { "expression": { @@ -2090,7 +2090,7 @@ "previouslyChangedExpressionState": "default", "activePriority": 1, "containerState": "done", - "numLeafNodes": 1 + "numLeafNodes": 2 } ], "speed": 1.25, diff --git a/src/lib/runners/nvdn.json b/src/lib/runners/nvdn.json index 8f8c079aa..d6ea9893a 100644 --- a/src/lib/runners/nvdn.json +++ b/src/lib/runners/nvdn.json @@ -169,7 +169,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 6, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/omwd.json b/src/lib/runners/omwd.json index 5850e42d5..4fcfa4f74 100644 --- a/src/lib/runners/omwd.json +++ b/src/lib/runners/omwd.json @@ -133,7 +133,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 5, + "numLeafNodes": 6, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/psyv.json b/src/lib/runners/psyv.json index 37722377c..bb578f40a 100644 --- a/src/lib/runners/psyv.json +++ b/src/lib/runners/psyv.json @@ -163,7 +163,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 5, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/qrgc.json b/src/lib/runners/qrgc.json index e31c2e625..1b20dcc1a 100644 --- a/src/lib/runners/qrgc.json +++ b/src/lib/runners/qrgc.json @@ -134,7 +134,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 5, + "numLeafNodes": 6, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/ryqp.json b/src/lib/runners/ryqp.json index 330c48db1..46a39e954 100644 --- a/src/lib/runners/ryqp.json +++ b/src/lib/runners/ryqp.json @@ -14,7 +14,7 @@ "shorthandNumber": 5, "shorthandNumberAfterConvert": "number" }, - "numLeafNodes": 1, + "numLeafNodes": 2, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/sdta.json b/src/lib/runners/sdta.json index 270703e81..7397781d9 100644 --- a/src/lib/runners/sdta.json +++ b/src/lib/runners/sdta.json @@ -162,7 +162,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 5, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/tjaf.json b/src/lib/runners/tjaf.json index 39dc3c1bf..a2f73ad21 100644 --- a/src/lib/runners/tjaf.json +++ b/src/lib/runners/tjaf.json @@ -133,7 +133,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 5, + "numLeafNodes": 6, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/uhqo.json b/src/lib/runners/uhqo.json index c65ba6f9e..124b6e36a 100644 --- a/src/lib/runners/uhqo.json +++ b/src/lib/runners/uhqo.json @@ -14,7 +14,7 @@ "shorthandNumber": 6, "shorthandNumberAfterConvert": "number" }, - "numLeafNodes": 1, + "numLeafNodes": 2, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/vlhb.json b/src/lib/runners/vlhb.json index 745c93c71..ee6616824 100644 --- a/src/lib/runners/vlhb.json +++ b/src/lib/runners/vlhb.json @@ -162,7 +162,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 5, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/vqyl.json b/src/lib/runners/vqyl.json index 4bfaca693..43d3ca46f 100644 --- a/src/lib/runners/vqyl.json +++ b/src/lib/runners/vqyl.json @@ -167,7 +167,7 @@ "type": "call", "priority": 2 }, - "numLeafNodes": 6, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/xqjd.json b/src/lib/runners/xqjd.json index 459bf9f1a..b654b94d8 100644 --- a/src/lib/runners/xqjd.json +++ b/src/lib/runners/xqjd.json @@ -229,7 +229,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 7, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/xxan.json b/src/lib/runners/xxan.json index 1bbaf535f..bd8132b45 100644 --- a/src/lib/runners/xxan.json +++ b/src/lib/runners/xxan.json @@ -134,7 +134,7 @@ "type": "call", "priority": 1 }, - "numLeafNodes": 5, + "numLeafNodes": 6, "containerState": "ready", "previouslyChangedExpressionState": "default" } diff --git a/src/lib/runners/ycpk.json b/src/lib/runners/ycpk.json index d3730740e..cc67e83b5 100644 --- a/src/lib/runners/ycpk.json +++ b/src/lib/runners/ycpk.json @@ -163,7 +163,7 @@ "type": "call", "priority": 4 }, - "numLeafNodes": 5, + "numLeafNodes": 8, "containerState": "ready", "previouslyChangedExpressionState": "default" } From 3507a16e160b13a5443072ae9b2a390f9fdb9b68 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 18:29:05 -0700 Subject: [PATCH 17/36] Implement numLeafNodesToVariableSize --- .../ExpressionRunnerPrecomputed.tsx | 5 ++++- src/lib/numLeafNodesToVariableSize.ts | 21 +++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 src/lib/numLeafNodesToVariableSize.ts diff --git a/src/components/ExpressionRunnerPrecomputed.tsx b/src/components/ExpressionRunnerPrecomputed.tsx index c22ac6011..c94f59cca 100644 --- a/src/components/ExpressionRunnerPrecomputed.tsx +++ b/src/components/ExpressionRunnerPrecomputed.tsx @@ -17,6 +17,7 @@ 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 CrossSvg from 'src/components/CrossSvg' import { LinkButton } from 'src/components/ContentTags/LinkButton' @@ -168,7 +169,9 @@ const ExpressionRunnerPrecomputed = ({ highlightOverrides, highlightOverrideActiveAfterStart, highlightOverridesCallArgAndFuncUnboundOnly, - variableSize, + variableSize: numLeafNodesToVariableSize( + expressionContainers[currentIndex].numLeafNodes + ), started: atLeastOneStepTaken, isDoneOrReady: isDone || isReady, highlightFunctions, diff --git a/src/lib/numLeafNodesToVariableSize.ts b/src/lib/numLeafNodesToVariableSize.ts new file mode 100644 index 000000000..8e8ae5980 --- /dev/null +++ b/src/lib/numLeafNodesToVariableSize.ts @@ -0,0 +1,21 @@ +import { ExpressionRunnerProps } from 'src/types/ExpressionRunnerTypes' + +const numLeafNodesToVariableSize = ( + numLeafNodes: number +): ExpressionRunnerProps['variableSize'] => { + 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 From 83adcc750327b765b83ae4871a6fecf4bd5073ae Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 18:50:00 -0700 Subject: [PATCH 18/36] Add populateMaxNestedFunctionDepths --- .../lib/populateMaxNestedFunctionDepths.ts | 45 +++++++++++++++++++ scripts/lib/prioritizeExpression.ts | 5 ++- src/components/FunctionExpressionBox.tsx | 3 +- src/types/ExpressionTypes.ts | 1 + 4 files changed, 51 insertions(+), 3 deletions(-) create mode 100644 scripts/lib/populateMaxNestedFunctionDepths.ts diff --git a/scripts/lib/populateMaxNestedFunctionDepths.ts b/scripts/lib/populateMaxNestedFunctionDepths.ts new file mode 100644 index 000000000..d9867650d --- /dev/null +++ b/scripts/lib/populateMaxNestedFunctionDepths.ts @@ -0,0 +1,45 @@ +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 + } else if (isCall(expression)) { + return { + ...expression, + arg: populateMaxNestedFunctionDepths(expression.arg), + func: populateMaxNestedFunctionDepths(expression.func) + } + } 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) + } + } else if (isBinary(expression)) { + return { + ...expression, + first: populateMaxNestedFunctionDepths(expression.first), + second: populateMaxNestedFunctionDepths(expression.second) + } + } else { + throw new Error() + } +} diff --git a/scripts/lib/prioritizeExpression.ts b/scripts/lib/prioritizeExpression.ts index 948b7deb2..59eb2c860 100644 --- a/scripts/lib/prioritizeExpression.ts +++ b/scripts/lib/prioritizeExpression.ts @@ -12,6 +12,7 @@ import { ConditionalExpression, BinaryExpression } from 'src/types/ExpressionTypes' +import populateMaxNestedFunctionDepths from 'scripts/lib/populateMaxNestedFunctionDepths' function prioritizeCallExpressionHelper({ expression, @@ -428,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/src/components/FunctionExpressionBox.tsx b/src/components/FunctionExpressionBox.tsx index a4375a4b7..6e105d84a 100644 --- a/src/components/FunctionExpressionBox.tsx +++ b/src/components/FunctionExpressionBox.tsx @@ -4,7 +4,6 @@ import ExpressionPriorityContext from 'src/components/ExpressionPriorityContext' import Flex from 'src/components/Flex' import FlexCenter from 'src/components/FlexCenter' import ExpressionBox from 'src/components/ExpressionBox' -import maxNestedFunctionDepth from 'scripts/lib/maxNestedFunctionDepth' import { FunctionExpression } from 'src/types/ExpressionTypes' import plusOneSvg from 'src/images/plusOne.url.svg' import minusOneSvg from 'src/images/minusOne.url.svg' @@ -49,7 +48,7 @@ const FunctionExpressionBox = ({ expression }: FunctionExpressionBoxProps) => { > diff --git a/src/types/ExpressionTypes.ts b/src/types/ExpressionTypes.ts index 905e0ab4a..2ed13b4b5 100644 --- a/src/types/ExpressionTypes.ts +++ b/src/types/ExpressionTypes.ts @@ -284,6 +284,7 @@ export interface FunctionExpression { readonly arg: VariableExpression readonly body: Expression readonly meta?: 'focused' | 'plusOneEffect' | 'minusOneEffect' + readonly maxNestedFunctionDepth?: number } export interface ConditionalExpression { From 83231a26b787068925b3d4adfa8f16747fe1fe93 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 19:04:47 -0700 Subject: [PATCH 19/36] Fix populateMaxNestedFunctionDepths --- scripts/lib/populateMaxNestedFunctionDepths.ts | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/scripts/lib/populateMaxNestedFunctionDepths.ts b/scripts/lib/populateMaxNestedFunctionDepths.ts index d9867650d..2f93747d9 100644 --- a/scripts/lib/populateMaxNestedFunctionDepths.ts +++ b/scripts/lib/populateMaxNestedFunctionDepths.ts @@ -12,12 +12,16 @@ export default function populateMaxNestedFunctionDepths( expression: E ): E { if (isVariable(expression)) { - return expression + return { + ...expression, + maxNestedFunctionDepth: maxNestedFunctionDepth(expression) + } } else if (isCall(expression)) { return { ...expression, arg: populateMaxNestedFunctionDepths(expression.arg), - func: populateMaxNestedFunctionDepths(expression.func) + func: populateMaxNestedFunctionDepths(expression.func), + maxNestedFunctionDepth: maxNestedFunctionDepth(expression) } } else if (isFunction(expression)) { return { @@ -31,15 +35,17 @@ export default function populateMaxNestedFunctionDepths( ...expression, condition: populateMaxNestedFunctionDepths(expression.condition), trueCase: populateMaxNestedFunctionDepths(expression.trueCase), - falseCase: populateMaxNestedFunctionDepths(expression.falseCase) + falseCase: populateMaxNestedFunctionDepths(expression.falseCase), + maxNestedFunctionDepth: maxNestedFunctionDepth(expression) } } else if (isBinary(expression)) { return { ...expression, first: populateMaxNestedFunctionDepths(expression.first), - second: populateMaxNestedFunctionDepths(expression.second) + second: populateMaxNestedFunctionDepths(expression.second), + maxNestedFunctionDepth: maxNestedFunctionDepth(expression) } } else { - throw new Error() + return expression } } From 916fefed565e8b3293bddb0d27067a3eee17dd07 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 19:06:35 -0700 Subject: [PATCH 20/36] Add maxNestedFunctionDepth --- src/lib/runners/aaov.json | 54 +- src/lib/runners/abnp.json | 27 +- src/lib/runners/aezk.json | 27 +- src/lib/runners/afoh.json | 66 +- src/lib/runners/akik.json | 828 ++- src/lib/runners/akjy.json | 294 +- src/lib/runners/aklf.json | 15 +- src/lib/runners/akug.json | 69 +- src/lib/runners/alca.json | 27 +- src/lib/runners/amjx.json | 30 +- src/lib/runners/amoq.json | 66 +- src/lib/runners/anzh.json | 102 +- src/lib/runners/aone.json | 45 +- src/lib/runners/aovj.json | 12 +- src/lib/runners/apuz.json | 54 +- src/lib/runners/auks.json | 27 +- src/lib/runners/avcu.json | 45 +- src/lib/runners/avsl.json | 30 +- src/lib/runners/awbq.json | 30 +- src/lib/runners/awwn.json | 69 +- src/lib/runners/ayok.json | 93 +- src/lib/runners/ayrl.json | 33 +- src/lib/runners/bdme.json | 15 +- src/lib/runners/beiz.json | 240 +- src/lib/runners/bgfl.json | 3 +- src/lib/runners/bgko.json | 81 +- src/lib/runners/bgxi.json | 27 +- src/lib/runners/bhpw.json | 3 +- src/lib/runners/biit.json | 3 +- src/lib/runners/blvt.json | 39 +- src/lib/runners/bndi.json | 3 +- src/lib/runners/bnyo.json | 165 +- src/lib/runners/bras.json | 150 +- src/lib/runners/bwff.json | 27 +- src/lib/runners/bxuv.json | 102 +- src/lib/runners/cbmn.json | 75 +- src/lib/runners/cefx.json | 102 +- src/lib/runners/cjxe.json | 33 +- src/lib/runners/cldb.json | 75 +- src/lib/runners/cmla.json | 21 +- src/lib/runners/cowm.json | 21 +- src/lib/runners/cpdy.json | 75 +- src/lib/runners/cpkp.json | 3 +- src/lib/runners/crvj.json | 18 +- src/lib/runners/csqj.json | 153 +- src/lib/runners/cuwg.json | 114 +- src/lib/runners/cvtc.json | 27 +- src/lib/runners/cyyp.json | 54 +- src/lib/runners/dcji.json | 30 +- src/lib/runners/ddrg.json | 36 +- src/lib/runners/deay.json | 27 +- src/lib/runners/dewi.json | 45 +- src/lib/runners/dfjp.json | 45 +- src/lib/runners/dgpx.json | 27 +- src/lib/runners/dgyc.json | 9 +- src/lib/runners/dhiu.json | 402 +- src/lib/runners/dhzf.json | 21 +- src/lib/runners/diis.json | 93 +- src/lib/runners/ditw.json | 9 +- src/lib/runners/dkdt.json | 21 +- src/lib/runners/dkiy.json | 27 +- src/lib/runners/dmrz.json | 33 +- src/lib/runners/dogu.json | 15 +- src/lib/runners/dpaw.json | 165 +- src/lib/runners/dqdv.json | 21 +- src/lib/runners/dqey.json | 21 +- src/lib/runners/dqwh.json | 12 +- src/lib/runners/dtzu.json | 27 +- src/lib/runners/dubm.json | 39 +- src/lib/runners/duuk.json | 39 +- src/lib/runners/dvpl.json | 39 +- src/lib/runners/dwmc.json | 3777 +++++++---- src/lib/runners/dwzy.json | 15 +- src/lib/runners/dyoq.json | 66 +- src/lib/runners/eagi.json | 24 +- src/lib/runners/ednv.json | 9 +- src/lib/runners/edzu.json | 51 +- src/lib/runners/ehxq.json | 42 +- src/lib/runners/elku.json | 15 +- src/lib/runners/elyq.json | 15 +- src/lib/runners/envj.json | 39 +- src/lib/runners/eozk.json | 21 +- src/lib/runners/epoi.json | 30 +- src/lib/runners/etae.json | 27 +- src/lib/runners/etku.json | 6 +- src/lib/runners/evqx.json | 30 +- src/lib/runners/eweo.json | 45 +- src/lib/runners/exbn.json | 828 ++- src/lib/runners/ezmz.json | 66 +- src/lib/runners/fclo.json | 21 +- src/lib/runners/fdig.json | 9 +- src/lib/runners/fhkl.json | 114 +- src/lib/runners/fhrd.json | 27 +- src/lib/runners/fkat.json | 42 +- src/lib/runners/fkqu.json | 30 +- src/lib/runners/fkvy.json | 141 +- src/lib/runners/fljg.json | 63 +- src/lib/runners/fogc.json | 3 +- src/lib/runners/fsgq.json | 765 ++- src/lib/runners/fton.json | 57 +- src/lib/runners/fxde.json | 21 +- src/lib/runners/fxok.json | 15 +- src/lib/runners/gemh.json | 3 +- src/lib/runners/ggxl.json | 9 +- src/lib/runners/ghwe.json | 30 +- src/lib/runners/glbk.json | 12 +- src/lib/runners/gmgs.json | 39 +- src/lib/runners/gmzn.json | 168 +- src/lib/runners/gngw.json | 186 +- src/lib/runners/gnwm.json | 9 +- src/lib/runners/gpat.json | 1140 ++-- src/lib/runners/grla.json | 18 +- src/lib/runners/gtdu.json | 21 +- src/lib/runners/guhy.json | 12 +- src/lib/runners/gvxz.json | 3 +- src/lib/runners/gwtp.json | 30 +- src/lib/runners/hafp.json | 102 +- src/lib/runners/hbbv.json | 15 +- src/lib/runners/hdhy.json | 222 +- src/lib/runners/hdxc.json | 228 +- src/lib/runners/hehx.json | 21 +- src/lib/runners/hhdu.json | 21 +- src/lib/runners/hhjq.json | 57 +- src/lib/runners/hluq.json | 126 +- src/lib/runners/hnyn.json | 222 +- src/lib/runners/htir.json | 105 +- src/lib/runners/hvfb.json | 63 +- src/lib/runners/hvqh.json | 9 +- src/lib/runners/hvqy.json | 15 +- src/lib/runners/hykj.json | 201 +- src/lib/runners/iatt.json | 15 +- src/lib/runners/iczf.json | 21 +- src/lib/runners/ifiq.json | 4077 ++++++++---- src/lib/runners/ifpo.json | 15 +- src/lib/runners/igpn.json | 21 +- src/lib/runners/igrl.json | 27 +- src/lib/runners/ilpo.json | 15 +- src/lib/runners/ilvq.json | 27 +- src/lib/runners/immq.json | 21 +- src/lib/runners/imyd.json | 15 +- src/lib/runners/issq.json | 27 +- src/lib/runners/itbm.json | 18 +- src/lib/runners/ivol.json | 3 +- src/lib/runners/iwmu.json | 3 +- src/lib/runners/izgz.json | 147 +- src/lib/runners/jaqs.json | 6 +- src/lib/runners/jarm.json | 15 +- src/lib/runners/jbam.json | 63 +- src/lib/runners/jbqw.json | 57 +- src/lib/runners/jehv.json | 9 +- src/lib/runners/jguj.json | 39 +- src/lib/runners/jiqb.json | 18 +- src/lib/runners/jiua.json | 45 +- src/lib/runners/jjet.json | 174 +- src/lib/runners/jjjh.json | 18 +- src/lib/runners/jmmp.json | 21 +- src/lib/runners/joaq.json | 21 +- src/lib/runners/jsvg.json | 402 +- src/lib/runners/jtxf.json | 15 +- src/lib/runners/jwah.json | 3 +- src/lib/runners/jwce.json | 21 +- src/lib/runners/jwdn.json | 27 +- src/lib/runners/jwue.json | 15 +- src/lib/runners/jwzh.json | 15 +- src/lib/runners/jxvy.json | 3 +- src/lib/runners/jyqf.json | 27 +- src/lib/runners/kbnn.json | 18 +- src/lib/runners/kdgv.json | 66 +- src/lib/runners/keck.json | 15 +- src/lib/runners/kiiq.json | 3 +- src/lib/runners/kizi.json | 3 +- src/lib/runners/kjba.json | 102 +- src/lib/runners/kmyl.json | 15 +- src/lib/runners/knhw.json | 15 +- src/lib/runners/kosw.json | 42 +- src/lib/runners/kvso.json | 48 +- src/lib/runners/kwyy.json | 63 +- src/lib/runners/kzkg.json | 15 +- src/lib/runners/laea.json | 27 +- src/lib/runners/ldqk.json | 21 +- src/lib/runners/lgiv.json | 51 +- src/lib/runners/lipt.json | 558 +- src/lib/runners/lizi.json | 9 +- src/lib/runners/loai.json | 15 +- src/lib/runners/ltpe.json | 54 +- src/lib/runners/lwoq.json | 39 +- src/lib/runners/lxgj.json | 75 +- src/lib/runners/lxhc.json | 15 +- src/lib/runners/lxrk.json | 48 +- src/lib/runners/mbje.json | 3 +- src/lib/runners/mcug.json | 12 +- src/lib/runners/mepb.json | 27 +- src/lib/runners/mhgm.json | 15 +- src/lib/runners/mhyv.json | 21 +- src/lib/runners/mibj.json | 54 +- src/lib/runners/mifg.json | 24 +- src/lib/runners/mlnt.json | 63 +- src/lib/runners/mqvu.json | 3 +- src/lib/runners/msiw.json | 30 +- src/lib/runners/msrk.json | 66 +- src/lib/runners/mutg.json | 24 +- src/lib/runners/myjz.json | 93 +- src/lib/runners/mzqc.json | 27 +- src/lib/runners/mzys.json | 27 +- src/lib/runners/ngxc.json | 21 +- src/lib/runners/nhqo.json | 63 +- src/lib/runners/niwv.json | 63 +- src/lib/runners/nlbn.json | 1107 ++-- src/lib/runners/nlyu.json | 27 +- src/lib/runners/nmbt.json | 6 +- src/lib/runners/nmmz.json | 24 +- src/lib/runners/nmrp.json | 693 +- src/lib/runners/nngz.json | 33 +- src/lib/runners/nntn.json | 15 +- src/lib/runners/nplf.json | 15 +- src/lib/runners/nuco.json | 63 +- src/lib/runners/nvdn.json | 57 +- src/lib/runners/nvqu.json | 39 +- src/lib/runners/oclg.json | 21 +- src/lib/runners/olyw.json | 39 +- src/lib/runners/omwd.json | 45 +- src/lib/runners/oork.json | 21 +- src/lib/runners/ooya.json | 21 +- src/lib/runners/oqpi.json | 1044 ++-- src/lib/runners/osff.json | 27 +- src/lib/runners/osqo.json | 3 +- src/lib/runners/otbe.json | 3 +- src/lib/runners/oukl.json | 27 +- src/lib/runners/ovua.json | 3867 ++++++++---- src/lib/runners/owpg.json | 6 +- src/lib/runners/oykb.json | 39 +- src/lib/runners/ozbe.json | 30 +- src/lib/runners/ozxi.json | 3 +- src/lib/runners/pbhg.json | 27 +- src/lib/runners/pbop.json | 75 +- src/lib/runners/peiy.json | 102 +- src/lib/runners/pgxb.json | 9 +- src/lib/runners/plbv.json | 12 +- src/lib/runners/plde.json | 63 +- src/lib/runners/pmdm.json | 3 +- src/lib/runners/poha.json | 111 +- src/lib/runners/psyv.json | 57 +- src/lib/runners/qaoa.json | 108 +- src/lib/runners/qcmh.json | 12 +- src/lib/runners/qfbk.json | 27 +- src/lib/runners/qgau.json | 42 +- src/lib/runners/qlcq.json | 63 +- src/lib/runners/qoms.json | 15 +- src/lib/runners/qrfw.json | 39 +- src/lib/runners/qrgc.json | 45 +- src/lib/runners/qsnv.json | 27 +- src/lib/runners/qsoa.json | 3 +- src/lib/runners/qwdg.json | 27 +- src/lib/runners/qxob.json | 54 +- src/lib/runners/qycx.json | 6 +- src/lib/runners/rakk.json | 21 +- src/lib/runners/rbup.json | 21 +- src/lib/runners/rdae.json | 75 +- src/lib/runners/rgta.json | 9 +- src/lib/runners/rhcv.json | 27 +- src/lib/runners/rhoa.json | 12 +- src/lib/runners/rico.json | 27 +- src/lib/runners/rivc.json | 30 +- src/lib/runners/rjfy.json | 12 +- src/lib/runners/rjho.json | 51 +- src/lib/runners/rjzw.json | 981 ++- src/lib/runners/rlrs.json | 33 +- src/lib/runners/rnug.json | 3 +- src/lib/runners/roko.json | 21 +- src/lib/runners/rqjo.json | 30 +- src/lib/runners/rtza.json | 3 +- src/lib/runners/ruou.json | 12 +- src/lib/runners/rviy.json | 9 +- src/lib/runners/rwuw.json | 108 +- src/lib/runners/rypq.json | 27 +- src/lib/runners/ryqp.json | 3 +- src/lib/runners/sdta.json | 57 +- src/lib/runners/seie.json | 3 +- src/lib/runners/sgfj.json | 30 +- src/lib/runners/sgnp.json | 15 +- src/lib/runners/skoo.json | 75 +- src/lib/runners/smdm.json | 63 +- src/lib/runners/snlf.json | 5631 +++++++++++------ src/lib/runners/spga.json | 27 +- src/lib/runners/spki.json | 30 +- src/lib/runners/sskt.json | 39 +- src/lib/runners/sucz.json | 6 +- src/lib/runners/svbd.json | 1503 +++-- src/lib/runners/sxnt.json | 27 +- src/lib/runners/tfsi.json | 162 +- src/lib/runners/thbw.json | 9 +- src/lib/runners/thkn.json | 240 +- src/lib/runners/tjaf.json | 45 +- src/lib/runners/toem.json | 66 +- src/lib/runners/tpyg.json | 117 +- src/lib/runners/udxn.json | 39 +- src/lib/runners/uexo.json | 294 +- src/lib/runners/ugvz.json | 2835 ++++++--- src/lib/runners/uhqo.json | 3 +- src/lib/runners/uiwl.json | 75 +- src/lib/runners/unxf.json | 63 +- src/lib/runners/uppk.json | 27 +- src/lib/runners/uvmv.json | 21 +- src/lib/runners/uwma.json | 42 +- src/lib/runners/uwyn.json | 4899 ++++++++++----- src/lib/runners/vcqp.json | 39 +- src/lib/runners/vdhd.json | 186 +- src/lib/runners/veft.json | 15 +- src/lib/runners/vfdw.json | 72 +- src/lib/runners/vhte.json | 27 +- src/lib/runners/vilr.json | 27 +- src/lib/runners/vlhb.json | 57 +- src/lib/runners/vlob.json | 36 +- src/lib/runners/vmkg.json | 15 +- src/lib/runners/voeb.json | 6 +- src/lib/runners/vowa.json | 15 +- src/lib/runners/vozu.json | 12 +- src/lib/runners/vqwp.json | 27 +- src/lib/runners/vqyl.json | 57 +- src/lib/runners/vsvt.json | 3 +- src/lib/runners/vvjn.json | 3 +- src/lib/runners/vwvb.json | 3 +- src/lib/runners/wcer.json | 27 +- src/lib/runners/wenx.json | 63 +- src/lib/runners/weoz.json | 9 +- src/lib/runners/wgby.json | 111 +- src/lib/runners/wjwu.json | 21 +- src/lib/runners/wopl.json | 27 +- src/lib/runners/wqml.json | 27 +- src/lib/runners/wtup.json | 21 +- src/lib/runners/wunw.json | 78 +- src/lib/runners/wwtl.json | 54 +- src/lib/runners/wzqv.json | 5505 ++++++++++------ src/lib/runners/xbki.json | 11127 ++++++++++++++++++++++----------- src/lib/runners/xhdq.json | 114 +- src/lib/runners/xhul.json | 102 +- src/lib/runners/xjzx.json | 51 +- src/lib/runners/xkcm.json | 45 +- src/lib/runners/xlgb.json | 51 +- src/lib/runners/xmqp.json | 12 +- src/lib/runners/xpks.json | 6 +- src/lib/runners/xqjd.json | 81 +- src/lib/runners/xusi.json | 102 +- src/lib/runners/xwzc.json | 27 +- src/lib/runners/xxan.json | 45 +- src/lib/runners/yabb.json | 27 +- src/lib/runners/ybne.json | 63 +- src/lib/runners/ycpk.json | 57 +- src/lib/runners/ycxr.json | 21 +- src/lib/runners/yfwd.json | 27 +- src/lib/runners/yiri.json | 3 +- src/lib/runners/yjur.json | 30 +- src/lib/runners/ykqf.json | 15 +- src/lib/runners/ylav.json | 99 +- src/lib/runners/ynoy.json | 6312 ++++++++++++------- src/lib/runners/ysxf.json | 54 +- src/lib/runners/yxel.json | 3 +- src/lib/runners/yyfi.json | 30 +- src/lib/runners/zahd.json | 36 +- src/lib/runners/zdpf.json | 12 +- src/lib/runners/zemy.json | 114 +- src/lib/runners/zkon.json | 102 +- src/lib/runners/zlrx.json | 123 +- src/lib/runners/zsxo.json | 33 +- src/lib/runners/zuus.json | 87 +- src/lib/runners/zwpj.json | 18 +- src/lib/runners/zwut.json | 1881 ++++-- src/lib/runners/zwvj.json | 105 +- src/lib/runners/zxkq.json | 39 +- src/lib/runners/zzhq.json | 15 +- src/lib/runners/zzxj.json | 15 +- src/lib/runners/zzyu.json | 18 +- src/types/ExpressionTypes.ts | 5 + 373 files changed, 50405 insertions(+), 25200 deletions(-) diff --git a/src/lib/runners/aaov.json b/src/lib/runners/aaov.json index dd20288d3..ae38b3780 100644 --- a/src/lib/runners/aaov.json +++ b/src/lib/runners/aaov.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", @@ -96,7 +105,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -110,7 +120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -125,7 +136,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -137,7 +149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -148,19 +161,24 @@ "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", diff --git a/src/lib/runners/abnp.json b/src/lib/runners/abnp.json index 383fdb1fe..774456da9 100644 --- a/src/lib/runners/abnp.json +++ b/src/lib/runners/abnp.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -65,19 +69,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 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 3, "containerState": "stepped", diff --git a/src/lib/runners/aezk.json b/src/lib/runners/aezk.json index d05522d90..48f9f33da 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,19 +70,24 @@ "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, diff --git a/src/lib/runners/afoh.json b/src/lib/runners/afoh.json index 15d0efd20..6bd6714bd 100644 --- a/src/lib/runners/afoh.json +++ b/src/lib/runners/afoh.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32,7 +33,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -61,7 +63,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -75,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", @@ -93,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", @@ -111,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", @@ -129,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", @@ -146,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", @@ -164,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", @@ -184,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", @@ -202,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", @@ -220,11 +240,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 12, "containerState": "stepped", diff --git a/src/lib/runners/akik.json b/src/lib/runners/akik.json index 90ee203c7..f98dedfe4 100644 --- a/src/lib/runners/akik.json +++ b/src/lib/runners/akik.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "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,21 +179,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", @@ -198,7 +219,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -210,7 +232,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -224,7 +247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -237,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": { @@ -259,7 +287,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -271,7 +300,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -283,7 +313,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -299,7 +330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -313,7 +345,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -327,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", @@ -348,21 +384,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -383,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -395,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -409,7 +453,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -422,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": { @@ -444,7 +493,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -456,7 +506,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -468,7 +519,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -484,7 +536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -498,7 +551,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -512,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", @@ -533,21 +590,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -569,7 +632,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -581,7 +645,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -595,7 +660,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -608,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": { @@ -630,7 +700,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -642,7 +713,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -654,7 +726,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -670,7 +743,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -684,7 +758,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -699,7 +774,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -711,7 +787,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -725,7 +802,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -738,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", @@ -767,21 +851,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -802,7 +892,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -814,7 +905,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -828,7 +920,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -841,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": { @@ -863,7 +960,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -875,7 +973,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -887,7 +986,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -903,7 +1003,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -917,7 +1018,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -932,7 +1034,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -944,7 +1047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -958,7 +1062,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -971,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", @@ -1000,21 +1111,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -1032,7 +1149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1044,7 +1162,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1060,7 +1179,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1074,7 +1194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1089,7 +1210,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1101,7 +1223,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1115,7 +1238,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1128,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", @@ -1157,15 +1287,19 @@ 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, @@ -1183,7 +1317,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1195,7 +1330,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1211,7 +1347,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1225,7 +1362,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1240,7 +1378,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1252,7 +1391,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1266,7 +1406,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1279,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", @@ -1308,15 +1455,19 @@ 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": "showFuncUnbound", "activePriority": 2, @@ -1334,7 +1485,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1346,7 +1498,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1362,7 +1515,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1376,7 +1530,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1391,7 +1546,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1403,7 +1559,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1417,7 +1574,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1430,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", @@ -1459,15 +1623,19 @@ 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, @@ -1486,7 +1654,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1498,7 +1667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1514,7 +1684,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1528,7 +1699,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1543,7 +1715,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1555,7 +1728,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1569,7 +1743,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1582,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", @@ -1611,15 +1792,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -1637,7 +1822,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1649,7 +1835,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1665,7 +1852,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1679,7 +1867,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1694,7 +1883,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1706,7 +1896,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1720,7 +1911,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1733,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", @@ -1762,15 +1960,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -1788,7 +1990,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1800,7 +2003,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1816,7 +2020,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1830,7 +2035,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1844,7 +2050,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1857,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", @@ -1880,15 +2091,19 @@ 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, @@ -1906,7 +2121,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1918,7 +2134,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1934,7 +2151,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1948,7 +2166,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1962,7 +2181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1975,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", @@ -1998,15 +2222,19 @@ 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": "showFuncBound", "activePriority": 2, @@ -2024,7 +2252,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2036,7 +2265,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2052,7 +2282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2066,7 +2297,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2080,7 +2312,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2093,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", @@ -2116,15 +2353,19 @@ 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, @@ -2143,7 +2384,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2155,7 +2397,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2171,7 +2414,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2185,7 +2429,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2199,7 +2444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2212,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", @@ -2235,15 +2485,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -2261,7 +2515,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2273,7 +2528,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2289,7 +2545,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2303,7 +2560,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2317,7 +2575,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2330,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", @@ -2353,15 +2616,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -2379,7 +2646,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2391,7 +2659,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2407,7 +2676,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2420,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", @@ -2437,15 +2709,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/akjy.json b/src/lib/runners/akjy.json index 8af69e03f..34a3e9d95 100644 --- a/src/lib/runners/akjy.json +++ b/src/lib/runners/akjy.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -53,7 +56,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -68,7 +72,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -80,7 +85,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -94,7 +100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -107,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", @@ -136,15 +149,19 @@ 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": "active", "activePriority": 2, @@ -162,7 +179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -174,7 +192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -190,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -204,7 +224,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -219,7 +240,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -231,7 +253,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -245,7 +268,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -258,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", @@ -287,15 +317,19 @@ 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": "showFuncUnbound", "activePriority": 2, @@ -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,15 +485,19 @@ 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, @@ -465,7 +516,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -477,7 +529,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -493,7 +546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -507,7 +561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -522,7 +577,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -534,7 +590,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -548,7 +605,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -561,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", @@ -590,15 +654,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -616,7 +684,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -628,7 +697,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -644,7 +714,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -658,7 +729,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -673,7 +745,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -685,7 +758,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -699,7 +773,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -712,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", @@ -741,15 +822,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -767,7 +852,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -779,7 +865,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -795,7 +882,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -809,7 +897,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -823,7 +912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -836,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", @@ -859,15 +953,19 @@ 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, diff --git a/src/lib/runners/aklf.json b/src/lib/runners/aklf.json index e8cd54acb..0bfbf3f09 100644 --- a/src/lib/runners/aklf.json +++ b/src/lib/runners/aklf.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "A", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/akug.json b/src/lib/runners/akug.json index 35a2a54cd..a63f9ee4c 100644 --- a/src/lib/runners/akug.json +++ b/src/lib/runners/akug.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -55,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", @@ -72,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": { @@ -94,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -106,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -134,7 +146,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -148,7 +161,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -162,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", @@ -183,22 +200,28 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/alca.json b/src/lib/runners/alca.json index 1b5924d1c..91e73d858 100644 --- a/src/lib/runners/alca.json +++ b/src/lib/runners/alca.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/amjx.json b/src/lib/runners/amjx.json index f97864190..7349117c9 100644 --- a/src/lib/runners/amjx.json +++ b/src/lib/runners/amjx.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,13 +105,16 @@ ], "emphasizePriority": false, "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", diff --git a/src/lib/runners/amoq.json b/src/lib/runners/amoq.json index 836cfd5b5..51df453a6 100644 --- a/src/lib/runners/amoq.json +++ b/src/lib/runners/amoq.json @@ -32,7 +32,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -46,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", @@ -64,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", @@ -82,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", @@ -100,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", @@ -118,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", @@ -136,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", @@ -154,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", @@ -172,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", @@ -190,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", @@ -208,11 +227,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 11, "containerState": "ready", @@ -229,7 +250,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 20 + "shorthandNumber": 20, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/anzh.json b/src/lib/runners/anzh.json index 22fce8fbc..e94c17620 100644 --- a/src/lib/runners/anzh.json +++ b/src/lib/runners/anzh.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -55,7 +58,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "A", @@ -68,7 +72,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -87,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -101,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", @@ -118,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", @@ -136,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": { @@ -161,7 +176,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -176,7 +192,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -192,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -205,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", @@ -222,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": { @@ -242,7 +265,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -258,7 +282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -271,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", @@ -288,27 +315,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "ready", diff --git a/src/lib/runners/aone.json b/src/lib/runners/aone.json index 47b0cb4f3..1aa57b459 100644 --- a/src/lib/runners/aone.json +++ b/src/lib/runners/aone.json @@ -15,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +56,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -69,7 +73,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -83,7 +88,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -97,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", @@ -118,22 +127,28 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/aovj.json b/src/lib/runners/aovj.json index 380ef884a..a50f474f4 100644 --- a/src/lib/runners/aovj.json +++ b/src/lib/runners/aovj.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28,11 +29,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", @@ -49,7 +52,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/apuz.json b/src/lib/runners/apuz.json index 15c5fd59d..1e69866f9 100644 --- a/src/lib/runners/apuz.json +++ b/src/lib/runners/apuz.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -65,19 +69,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 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 3, "containerState": "stepped", @@ -97,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -111,7 +121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -126,7 +137,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -138,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -149,19 +162,24 @@ "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", diff --git a/src/lib/runners/auks.json b/src/lib/runners/auks.json index 5d922c8b6..289fbf698 100644 --- a/src/lib/runners/auks.json +++ b/src/lib/runners/auks.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/avcu.json b/src/lib/runners/avcu.json index 26318388a..96f29d38c 100644 --- a/src/lib/runners/avcu.json +++ b/src/lib/runners/avcu.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -68,7 +72,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -82,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -96,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", @@ -117,21 +126,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/avsl.json b/src/lib/runners/avsl.json index 52d01fe88..bd50b04e7 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,13 +105,16 @@ ], "emphasizePriority": false, "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, diff --git a/src/lib/runners/awbq.json b/src/lib/runners/awbq.json index b6da26409..6db32a30f 100644 --- a/src/lib/runners/awbq.json +++ b/src/lib/runners/awbq.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -43,7 +45,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -57,7 +60,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -72,7 +76,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -86,19 +91,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "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", diff --git a/src/lib/runners/awwn.json b/src/lib/runners/awwn.json index 92c620787..6b80f1e21 100644 --- a/src/lib/runners/awwn.json +++ b/src/lib/runners/awwn.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -55,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", @@ -72,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": { @@ -94,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -106,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -134,7 +146,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -148,7 +161,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -162,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", @@ -183,21 +200,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 7, "containerState": "ready", diff --git a/src/lib/runners/ayok.json b/src/lib/runners/ayok.json index 477d238d6..bf1d8c1e9 100644 --- a/src/lib/runners/ayok.json +++ b/src/lib/runners/ayok.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +26,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -39,7 +41,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -50,15 +53,19 @@ "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", @@ -76,7 +83,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -90,7 +98,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -104,7 +113,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -115,15 +125,19 @@ "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", @@ -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,15 +197,19 @@ "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", @@ -207,7 +228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -221,7 +243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -235,7 +258,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -246,15 +270,19 @@ "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", @@ -272,7 +300,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -283,9 +312,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/ayrl.json b/src/lib/runners/ayrl.json index 0399fac57..d6649b79e 100644 --- a/src/lib/runners/ayrl.json +++ b/src/lib/runners/ayrl.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -54,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", @@ -71,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", @@ -88,15 +95,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 }, "numLeafNodes": 4, "containerState": "ready", diff --git a/src/lib/runners/bdme.json b/src/lib/runners/bdme.json index de109c8f3..4958f2d14 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/beiz.json b/src/lib/runners/beiz.json index 823748a6c..d47be8e8b 100644 --- a/src/lib/runners/beiz.json +++ b/src/lib/runners/beiz.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", @@ -96,7 +105,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -110,7 +120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -125,7 +136,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -137,7 +149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -148,19 +161,24 @@ "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", @@ -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,19 +254,24 @@ "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", @@ -264,7 +291,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -278,7 +306,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -293,7 +322,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -305,7 +335,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -316,19 +347,24 @@ "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", @@ -349,7 +385,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -363,7 +400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -378,7 +416,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -390,7 +429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -401,19 +441,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 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 3, "containerState": "stepped", @@ -433,7 +478,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -447,7 +493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -462,7 +509,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -474,7 +522,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -485,19 +534,24 @@ "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", @@ -517,7 +571,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -531,7 +586,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -542,13 +598,16 @@ "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", @@ -568,7 +627,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -582,7 +642,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -593,13 +654,16 @@ "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, @@ -619,7 +683,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -633,7 +698,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -644,13 +710,16 @@ "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, @@ -670,7 +739,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -684,7 +754,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -695,13 +766,16 @@ "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, @@ -722,7 +796,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -736,7 +811,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -747,13 +823,16 @@ "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, @@ -770,7 +849,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/bgfl.json b/src/lib/runners/bgfl.json index 91d050dc3..5cfbb2117 100644 --- a/src/lib/runners/bgfl.json +++ b/src/lib/runners/bgfl.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/bgko.json b/src/lib/runners/bgko.json index 67b1b9c2e..eca657332 100644 --- a/src/lib/runners/bgko.json +++ b/src/lib/runners/bgko.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -67,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -78,9 +83,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -95,7 +102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -106,9 +114,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -123,7 +133,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -135,7 +146,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -151,7 +163,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -164,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", @@ -181,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", @@ -204,29 +223,37 @@ 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", diff --git a/src/lib/runners/bgxi.json b/src/lib/runners/bgxi.json index 69b698659..ef499f28a 100644 --- a/src/lib/runners/bgxi.json +++ b/src/lib/runners/bgxi.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/bhpw.json b/src/lib/runners/bhpw.json index d8842adf0..d7ba21fc1 100644 --- a/src/lib/runners/bhpw.json +++ b/src/lib/runners/bhpw.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/biit.json b/src/lib/runners/biit.json index 1bbbf1c9d..cca5bf799 100644 --- a/src/lib/runners/biit.json +++ b/src/lib/runners/biit.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "ready", diff --git a/src/lib/runners/blvt.json b/src/lib/runners/blvt.json index 1de3983c2..5382e859b 100644 --- a/src/lib/runners/blvt.json +++ b/src/lib/runners/blvt.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "A", @@ -79,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", @@ -100,18 +108,23 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/bndi.json b/src/lib/runners/bndi.json index 2ba340837..474173d3a 100644 --- a/src/lib/runners/bndi.json +++ b/src/lib/runners/bndi.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/bnyo.json b/src/lib/runners/bnyo.json index d3aa05f20..2a145c559 100644 --- a/src/lib/runners/bnyo.json +++ b/src/lib/runners/bnyo.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -57,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", @@ -74,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", @@ -91,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": { @@ -113,7 +124,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -129,7 +141,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -143,7 +156,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -155,7 +169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -167,7 +182,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -183,7 +199,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -197,7 +214,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -211,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", @@ -232,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": { @@ -261,7 +288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -273,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -289,7 +318,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -302,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", @@ -319,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": { @@ -342,7 +378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -354,7 +391,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -365,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": { @@ -384,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -396,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -408,7 +451,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -419,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", @@ -441,29 +489,36 @@ 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", diff --git a/src/lib/runners/bras.json b/src/lib/runners/bras.json index 07b88be96..812db71c8 100644 --- a/src/lib/runners/bras.json +++ b/src/lib/runners/bras.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": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -82,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -111,11 +118,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -129,7 +138,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -141,7 +151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -156,7 +167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -170,7 +182,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -189,7 +202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -203,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", @@ -220,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", @@ -238,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": { @@ -269,7 +294,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -285,7 +311,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -298,11 +325,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -316,7 +345,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -328,7 +358,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -343,7 +374,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -357,7 +389,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -376,7 +409,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -390,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", @@ -407,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", @@ -425,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", @@ -463,13 +510,16 @@ ], "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, diff --git a/src/lib/runners/bwff.json b/src/lib/runners/bwff.json index a3e99b613..61394216a 100644 --- a/src/lib/runners/bwff.json +++ b/src/lib/runners/bwff.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -52,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", @@ -69,15 +74,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/bxuv.json b/src/lib/runners/bxuv.json index 3c64a1d9e..3a9c856bd 100644 --- a/src/lib/runners/bxuv.json +++ b/src/lib/runners/bxuv.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -55,7 +58,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "A", @@ -68,7 +72,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -87,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -101,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", @@ -118,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", @@ -136,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": { @@ -161,7 +176,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -176,7 +192,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -192,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -205,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", @@ -222,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": { @@ -242,7 +265,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -258,7 +282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -271,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", @@ -288,27 +315,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "ready", diff --git a/src/lib/runners/cbmn.json b/src/lib/runners/cbmn.json index d5067cd72..88f590e5f 100644 --- a/src/lib/runners/cbmn.json +++ b/src/lib/runners/cbmn.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -50,7 +53,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "F", @@ -61,9 +65,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -78,7 +84,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "C", @@ -89,9 +96,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -106,7 +115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +128,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -134,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "D", @@ -147,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", @@ -164,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", @@ -187,26 +205,33 @@ 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", diff --git a/src/lib/runners/cefx.json b/src/lib/runners/cefx.json index 50ac49602..1c2a23dda 100644 --- a/src/lib/runners/cefx.json +++ b/src/lib/runners/cefx.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -70,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,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", @@ -120,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", @@ -138,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": { @@ -163,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -178,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -194,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -207,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", @@ -224,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": { @@ -244,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -260,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -273,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", @@ -290,27 +317,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "ready", diff --git a/src/lib/runners/cjxe.json b/src/lib/runners/cjxe.json index 5f98a8010..0a1cca926 100644 --- a/src/lib/runners/cjxe.json +++ b/src/lib/runners/cjxe.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -54,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", @@ -71,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", @@ -88,15 +95,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 }, "numLeafNodes": 4, "containerState": "ready", diff --git a/src/lib/runners/cldb.json b/src/lib/runners/cldb.json index d3ab70355..9c9b49775 100644 --- a/src/lib/runners/cldb.json +++ b/src/lib/runners/cldb.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -50,7 +53,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -61,9 +65,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -78,7 +84,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -89,9 +96,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -106,7 +115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +128,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -134,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -147,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", @@ -164,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", @@ -187,25 +205,32 @@ 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", diff --git a/src/lib/runners/cmla.json b/src/lib/runners/cmla.json index 34ee91989..9f56fe2a9 100644 --- a/src/lib/runners/cmla.json +++ b/src/lib/runners/cmla.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/cowm.json b/src/lib/runners/cowm.json index 62f0b8c76..ce796eca5 100644 --- a/src/lib/runners/cowm.json +++ b/src/lib/runners/cowm.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "n", @@ -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": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "m", @@ -52,13 +56,16 @@ "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", diff --git a/src/lib/runners/cpdy.json b/src/lib/runners/cpdy.json index dda9af795..ada375682 100644 --- a/src/lib/runners/cpdy.json +++ b/src/lib/runners/cpdy.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -58,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": { @@ -77,7 +82,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -92,7 +98,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -104,7 +111,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -115,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": { @@ -134,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -146,7 +158,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "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": "b", @@ -169,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", @@ -191,29 +209,36 @@ 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", diff --git a/src/lib/runners/cpkp.json b/src/lib/runners/cpkp.json index 2d7097568..fd9224a2e 100644 --- a/src/lib/runners/cpkp.json +++ b/src/lib/runners/cpkp.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/crvj.json b/src/lib/runners/crvj.json index 24c79bd28..993074f64 100644 --- a/src/lib/runners/crvj.json +++ b/src/lib/runners/crvj.json @@ -14,7 +14,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -28,7 +29,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -43,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -57,13 +60,16 @@ ], "emphasizePriority": false, "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", diff --git a/src/lib/runners/csqj.json b/src/lib/runners/csqj.json index 9ae12a307..cc6fd58ed 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,21 +83,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": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -112,7 +123,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -126,7 +138,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -138,7 +151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -150,7 +164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -164,7 +179,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -177,21 +193,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -211,7 +233,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -225,7 +248,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -237,7 +261,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -249,7 +274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -263,7 +289,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -276,21 +303,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, @@ -311,7 +344,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -325,7 +359,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -337,7 +372,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -349,7 +385,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -363,7 +400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -376,21 +414,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": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -408,7 +452,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -420,7 +465,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -434,7 +480,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -447,15 +494,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 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/cuwg.json b/src/lib/runners/cuwg.json index 0a3f71a59..2823906a8 100644 --- a/src/lib/runners/cuwg.json +++ b/src/lib/runners/cuwg.json @@ -15,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -40,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", @@ -59,11 +64,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "ready", @@ -84,7 +91,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -98,7 +106,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -109,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", @@ -128,11 +140,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -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,11 +217,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -224,7 +245,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -238,7 +260,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -249,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", @@ -268,11 +294,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -295,7 +323,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -309,7 +338,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -320,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", @@ -339,11 +372,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -363,7 +398,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -376,11 +412,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "done", diff --git a/src/lib/runners/cvtc.json b/src/lib/runners/cvtc.json index 645c76197..2c53077f4 100644 --- a/src/lib/runners/cvtc.json +++ b/src/lib/runners/cvtc.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", diff --git a/src/lib/runners/cyyp.json b/src/lib/runners/cyyp.json index 8a1de2fd6..8b6ead856 100644 --- a/src/lib/runners/cyyp.json +++ b/src/lib/runners/cyyp.json @@ -17,7 +17,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +32,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -57,7 +59,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -71,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", @@ -89,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", @@ -107,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", @@ -124,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", @@ -142,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", @@ -162,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", @@ -180,11 +196,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 10, "containerState": "ready", diff --git a/src/lib/runners/dcji.json b/src/lib/runners/dcji.json index 98991f11e..06517a1dd 100644 --- a/src/lib/runners/dcji.json +++ b/src/lib/runners/dcji.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "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,17 +66,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 2, "containerState": "ready", @@ -89,7 +98,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/ddrg.json b/src/lib/runners/ddrg.json index 2100ef8f2..400d7c4fc 100644 --- a/src/lib/runners/ddrg.json +++ b/src/lib/runners/ddrg.json @@ -14,7 +14,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -28,7 +29,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -47,7 +49,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -61,11 +64,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -78,11 +83,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -96,7 +103,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "mult", @@ -110,17 +118,21 @@ 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 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 7, "containerState": "ready", diff --git a/src/lib/runners/deay.json b/src/lib/runners/deay.json index 67d048489..b467b85c3 100644 --- a/src/lib/runners/deay.json +++ b/src/lib/runners/deay.json @@ -20,7 +20,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34,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", @@ -52,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", @@ -70,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", @@ -88,11 +95,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 5, "containerState": "ready", diff --git a/src/lib/runners/dewi.json b/src/lib/runners/dewi.json index fccc22965..f00c7c8c7 100644 --- a/src/lib/runners/dewi.json +++ b/src/lib/runners/dewi.json @@ -15,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +56,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -69,7 +73,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -83,7 +88,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -97,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", @@ -118,21 +127,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/dfjp.json b/src/lib/runners/dfjp.json index 49d17e1d8..d013f79c0 100644 --- a/src/lib/runners/dfjp.json +++ b/src/lib/runners/dfjp.json @@ -26,7 +26,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -40,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", @@ -58,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", @@ -76,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", @@ -94,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", @@ -112,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", @@ -130,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", @@ -148,11 +161,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 8, "containerState": "ready", diff --git a/src/lib/runners/dgpx.json b/src/lib/runners/dgpx.json index fc5a2fea7..a1a3009e5 100644 --- a/src/lib/runners/dgpx.json +++ b/src/lib/runners/dgpx.json @@ -20,7 +20,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34,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", @@ -52,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", @@ -70,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", @@ -88,11 +95,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 5, "containerState": "ready", diff --git a/src/lib/runners/dgyc.json b/src/lib/runners/dgyc.json index 1347fcbbd..14ec1b043 100644 --- a/src/lib/runners/dgyc.json +++ b/src/lib/runners/dgyc.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27,11 +28,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/dhiu.json b/src/lib/runners/dhiu.json index 05c97346e..0075dcd5e 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,21 +179,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": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -199,7 +220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -211,7 +233,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -225,7 +248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -238,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": { @@ -260,7 +288,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -272,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -284,7 +314,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -300,7 +331,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -314,7 +346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -328,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", @@ -349,21 +385,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -384,7 +426,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -396,7 +439,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -410,7 +454,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -423,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": { @@ -445,7 +494,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -457,7 +507,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -469,7 +520,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -485,7 +537,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -499,7 +552,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -513,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", @@ -534,21 +591,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -570,7 +633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -582,7 +646,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -596,7 +661,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -609,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": { @@ -631,7 +701,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -643,7 +714,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -655,7 +727,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -671,7 +744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -685,7 +759,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -700,7 +775,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -712,7 +788,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -726,7 +803,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -739,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", @@ -768,21 +852,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -803,7 +893,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -815,7 +906,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -829,7 +921,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -842,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": { @@ -864,7 +961,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -876,7 +974,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -888,7 +987,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -904,7 +1004,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -918,7 +1019,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -933,7 +1035,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -945,7 +1048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -959,7 +1063,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -972,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", @@ -1001,21 +1112,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -1033,7 +1150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1045,7 +1163,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1061,7 +1180,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1075,7 +1195,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1090,7 +1211,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1102,7 +1224,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1116,7 +1239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1129,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", @@ -1158,15 +1288,19 @@ 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, diff --git a/src/lib/runners/dhzf.json b/src/lib/runners/dhzf.json index 9eed1e670..234435a26 100644 --- a/src/lib/runners/dhzf.json +++ b/src/lib/runners/dhzf.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +26,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -39,7 +41,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -50,15 +53,19 @@ "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", diff --git a/src/lib/runners/diis.json b/src/lib/runners/diis.json index a027e22a0..0d44d4e35 100644 --- a/src/lib/runners/diis.json +++ b/src/lib/runners/diis.json @@ -15,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,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", @@ -59,11 +64,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -85,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -99,7 +107,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -110,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", @@ -129,11 +141,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -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,11 +219,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -226,7 +247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -240,7 +262,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -251,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", @@ -270,11 +296,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -294,7 +322,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -307,11 +336,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "done", diff --git a/src/lib/runners/ditw.json b/src/lib/runners/ditw.json index c92cc80d1..ce37354ec 100644 --- a/src/lib/runners/ditw.json +++ b/src/lib/runners/ditw.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27,11 +28,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/dkdt.json b/src/lib/runners/dkdt.json index d4c4c440c..ef65af3cc 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,13 +56,16 @@ "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, diff --git a/src/lib/runners/dkiy.json b/src/lib/runners/dkiy.json index 003243d39..23a03c1cb 100644 --- a/src/lib/runners/dkiy.json +++ b/src/lib/runners/dkiy.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -65,19 +69,24 @@ "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", diff --git a/src/lib/runners/dmrz.json b/src/lib/runners/dmrz.json index 62521781f..dc1475584 100644 --- a/src/lib/runners/dmrz.json +++ b/src/lib/runners/dmrz.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -54,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", @@ -71,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", @@ -88,15 +95,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 }, "numLeafNodes": 4, "containerState": "ready", diff --git a/src/lib/runners/dogu.json b/src/lib/runners/dogu.json index 95fb00136..d2e694013 100644 --- a/src/lib/runners/dogu.json +++ b/src/lib/runners/dogu.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/dpaw.json b/src/lib/runners/dpaw.json index 522dd9a90..f39adaa3b 100644 --- a/src/lib/runners/dpaw.json +++ b/src/lib/runners/dpaw.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -57,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", @@ -74,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", @@ -91,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": { @@ -113,7 +124,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -129,7 +141,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -143,7 +156,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -155,7 +169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -167,7 +182,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -183,7 +199,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -197,7 +214,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -211,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", @@ -232,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": { @@ -261,7 +288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -273,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -289,7 +318,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -302,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", @@ -319,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": { @@ -342,7 +378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -354,7 +391,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -365,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": { @@ -384,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -396,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -408,7 +451,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -419,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", @@ -441,29 +489,36 @@ 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", diff --git a/src/lib/runners/dqdv.json b/src/lib/runners/dqdv.json index 8b161acb9..ad55b5cf2 100644 --- a/src/lib/runners/dqdv.json +++ b/src/lib/runners/dqdv.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/dqey.json b/src/lib/runners/dqey.json index 1f0816107..29ec1121d 100644 --- a/src/lib/runners/dqey.json +++ b/src/lib/runners/dqey.json @@ -15,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,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", @@ -59,11 +64,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", diff --git a/src/lib/runners/dqwh.json b/src/lib/runners/dqwh.json index 161550322..b46f0c3fd 100644 --- a/src/lib/runners/dqwh.json +++ b/src/lib/runners/dqwh.json @@ -15,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "blankNumberYellow", @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "blankNumberRed", @@ -41,9 +43,11 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/dtzu.json b/src/lib/runners/dtzu.json index e835671d3..48d38db33 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,19 +70,24 @@ "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, diff --git a/src/lib/runners/dubm.json b/src/lib/runners/dubm.json index e5bc9e64b..088c33880 100644 --- a/src/lib/runners/dubm.json +++ b/src/lib/runners/dubm.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -56,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", @@ -73,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", @@ -90,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", @@ -107,15 +116,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 }, "numLeafNodes": 5, "containerState": "ready", diff --git a/src/lib/runners/duuk.json b/src/lib/runners/duuk.json index c5f55bec4..1b7dae304 100644 --- a/src/lib/runners/duuk.json +++ b/src/lib/runners/duuk.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -56,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", @@ -73,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", @@ -90,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", @@ -107,15 +116,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 }, "numLeafNodes": 5, "containerState": "ready", diff --git a/src/lib/runners/dvpl.json b/src/lib/runners/dvpl.json index 4bfc0de9e..7383fba30 100644 --- a/src/lib/runners/dvpl.json +++ b/src/lib/runners/dvpl.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -79,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", @@ -100,17 +108,22 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/dwmc.json b/src/lib/runners/dwmc.json index d6c621cbb..4b3c91ff0 100644 --- a/src/lib/runners/dwmc.json +++ b/src/lib/runners/dwmc.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32,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": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -67,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -80,11 +85,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -98,7 +105,8 @@ 1 ], "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": { "type": "conditional", @@ -125,7 +134,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -139,7 +149,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -158,7 +169,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -172,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", @@ -189,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", @@ -207,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": { @@ -238,7 +261,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -254,7 +278,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -267,11 +292,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -285,7 +312,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -297,7 +325,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -312,7 +341,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -326,7 +356,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -345,7 +376,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -359,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", @@ -376,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", @@ -394,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", @@ -432,11 +477,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -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,11 +967,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 2, @@ -904,7 +998,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -918,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": { @@ -937,7 +1034,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -953,7 +1051,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -966,11 +1065,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -984,7 +1085,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -996,7 +1098,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1011,7 +1114,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1025,7 +1129,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1044,7 +1149,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1058,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", @@ -1075,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", @@ -1093,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": { @@ -1124,7 +1241,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1140,7 +1258,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1153,11 +1272,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1171,7 +1292,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1183,7 +1305,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1198,7 +1321,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1212,7 +1336,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1231,7 +1356,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1245,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", @@ -1262,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", @@ -1280,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", @@ -1318,11 +1457,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 2, @@ -1347,7 +1488,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1361,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": { @@ -1380,7 +1524,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1396,7 +1541,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1409,11 +1555,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1427,7 +1575,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1439,7 +1588,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1454,7 +1604,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1468,7 +1619,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1487,7 +1639,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1501,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", @@ -1518,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", @@ -1536,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": { @@ -1567,7 +1731,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1583,7 +1748,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1596,11 +1762,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1614,7 +1782,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1626,7 +1795,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1641,7 +1811,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1655,7 +1826,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1674,7 +1846,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1688,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", @@ -1705,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", @@ -1723,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", @@ -1761,11 +1947,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 2, @@ -1790,7 +1978,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1804,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": { @@ -1823,7 +2014,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1839,7 +2031,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1852,11 +2045,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1870,7 +2065,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1882,7 +2078,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1897,7 +2094,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1911,7 +2109,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1930,7 +2129,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1944,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", @@ -1961,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", @@ -1979,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": { @@ -2010,7 +2221,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2026,7 +2238,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2039,11 +2252,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2057,7 +2272,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2069,7 +2285,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2084,7 +2301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2098,7 +2316,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2117,7 +2336,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2131,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", @@ -2148,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", @@ -2166,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", @@ -2204,11 +2437,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -2234,7 +2469,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2248,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": { @@ -2267,7 +2505,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2283,7 +2522,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2296,11 +2536,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2314,7 +2556,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2326,7 +2569,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2341,7 +2585,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2355,7 +2600,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2374,7 +2620,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2388,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", @@ -2405,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", @@ -2423,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": { @@ -2454,7 +2712,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2471,7 +2730,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2487,7 +2747,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2500,11 +2761,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2518,7 +2781,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2530,7 +2794,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2545,7 +2810,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2559,7 +2825,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2578,7 +2845,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2592,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", @@ -2609,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", @@ -2627,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": { @@ -2657,7 +2936,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2673,7 +2953,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2686,11 +2967,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2704,7 +2987,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2716,7 +3000,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2731,7 +3016,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2745,7 +3031,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2764,7 +3051,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2778,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", @@ -2795,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", @@ -2813,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": { @@ -2847,7 +3147,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2859,7 +3160,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2874,7 +3176,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2888,7 +3191,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2907,7 +3211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2921,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", @@ -2938,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", @@ -2956,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", @@ -2994,11 +3312,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 2, @@ -3023,7 +3343,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3037,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": { @@ -3056,7 +3379,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3072,7 +3396,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3085,11 +3410,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3103,7 +3430,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3115,7 +3443,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3130,7 +3459,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3144,7 +3474,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3163,7 +3494,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3177,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", @@ -3194,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", @@ -3212,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": { @@ -3243,7 +3586,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3260,7 +3604,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3276,7 +3621,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3289,11 +3635,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3307,7 +3655,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3319,7 +3668,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3334,7 +3684,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3348,7 +3699,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3367,7 +3719,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3381,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", @@ -3398,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", @@ -3416,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": { @@ -3446,7 +3810,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3462,7 +3827,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3475,11 +3841,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3493,7 +3861,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3505,7 +3874,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3520,7 +3890,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3534,7 +3905,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3553,7 +3925,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3567,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", @@ -3584,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", @@ -3602,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": { @@ -3636,7 +4021,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3648,7 +4034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3663,7 +4050,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3677,7 +4065,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3696,7 +4085,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3710,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", @@ -3727,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", @@ -3745,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", @@ -3783,11 +4186,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 2, @@ -3812,7 +4217,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3826,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": { @@ -3847,7 +4255,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3863,7 +4272,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3876,11 +4286,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3894,7 +4306,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3906,7 +4319,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3921,7 +4335,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3935,7 +4350,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3954,7 +4370,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3968,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", @@ -3985,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", @@ -4003,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": { @@ -4033,7 +4461,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4049,7 +4478,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4062,11 +4492,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4080,7 +4512,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4092,7 +4525,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4107,7 +4541,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4121,7 +4556,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4140,7 +4576,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4154,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", @@ -4171,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", @@ -4189,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": { @@ -4224,7 +4673,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4236,7 +4686,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4251,7 +4702,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4265,7 +4717,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4284,7 +4737,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4298,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", @@ -4315,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", @@ -4333,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", @@ -4365,11 +4830,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 2, @@ -4394,7 +4861,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4408,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": { @@ -4429,7 +4899,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4445,7 +4916,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4458,11 +4930,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4476,7 +4950,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4488,7 +4963,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4503,7 +4979,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4517,7 +4994,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4536,7 +5014,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4550,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", @@ -4567,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", @@ -4585,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": { @@ -4615,7 +5105,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4631,7 +5122,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4644,11 +5136,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4662,7 +5156,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4674,7 +5169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4689,7 +5185,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4703,7 +5200,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4722,7 +5220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4736,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", @@ -4753,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", @@ -4771,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": { @@ -4806,7 +5317,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4818,7 +5330,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4833,7 +5346,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4847,7 +5361,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4866,7 +5381,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4880,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", @@ -4897,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", @@ -4915,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", @@ -4947,11 +5474,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 2, @@ -4976,7 +5505,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4990,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": { @@ -5011,7 +5543,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5027,7 +5560,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5040,11 +5574,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5058,7 +5594,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5070,7 +5607,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5085,7 +5623,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5099,7 +5638,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5118,7 +5658,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5132,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", @@ -5149,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", @@ -5167,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": { @@ -5197,7 +5749,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5213,7 +5766,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5226,11 +5780,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5244,7 +5800,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5256,7 +5813,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5271,7 +5829,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5285,7 +5844,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5304,7 +5864,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5318,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", @@ -5335,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", @@ -5353,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": { @@ -5388,7 +5961,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5400,7 +5974,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5415,7 +5990,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5429,7 +6005,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5448,7 +6025,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5462,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", @@ -5479,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", @@ -5497,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", @@ -5529,11 +6118,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -5559,7 +6150,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5573,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": { @@ -5594,7 +6188,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5610,7 +6205,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5623,11 +6219,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5641,7 +6239,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5653,7 +6252,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5668,7 +6268,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5682,7 +6283,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5701,7 +6303,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5715,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", @@ -5732,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", @@ -5750,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": { @@ -5780,7 +6394,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5796,7 +6411,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5809,11 +6425,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5827,7 +6445,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5839,7 +6458,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5854,7 +6474,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5868,7 +6489,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5887,7 +6509,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5901,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", @@ -5918,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", @@ -5936,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": { @@ -5971,7 +6606,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5983,7 +6619,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5998,7 +6635,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6012,7 +6650,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6031,7 +6670,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6045,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": { @@ -6064,7 +6706,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6080,7 +6723,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6093,11 +6737,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6111,7 +6757,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6123,7 +6770,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6138,7 +6786,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6152,7 +6801,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6171,7 +6821,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6185,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", @@ -6202,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", @@ -6220,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": { @@ -6251,7 +6913,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6267,7 +6930,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6280,11 +6944,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6298,7 +6964,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6310,7 +6977,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6325,7 +6993,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6339,7 +7008,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6358,7 +7028,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6372,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", @@ -6389,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", @@ -6407,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", @@ -6445,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", @@ -6477,11 +7168,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 2, @@ -6506,7 +7199,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6520,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": { @@ -6541,7 +7237,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6557,7 +7254,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6570,11 +7268,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6588,7 +7288,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6600,7 +7301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6615,7 +7317,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6629,7 +7332,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6648,7 +7352,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6662,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", @@ -6679,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", @@ -6697,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": { @@ -6727,7 +7443,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6743,7 +7460,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6756,11 +7474,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6774,7 +7494,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6786,7 +7507,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6801,7 +7523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6815,7 +7538,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6834,7 +7558,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6848,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", @@ -6865,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", @@ -6883,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": { @@ -6918,7 +7655,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6930,7 +7668,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6945,7 +7684,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6959,7 +7699,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6978,7 +7719,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6992,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": { @@ -7011,7 +7755,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7027,7 +7772,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7040,11 +7786,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7058,7 +7806,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7070,7 +7819,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7085,7 +7835,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7099,7 +7850,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7118,7 +7870,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7132,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", @@ -7149,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", @@ -7167,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": { @@ -7198,7 +7962,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7214,7 +7979,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7227,11 +7993,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7245,7 +8013,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7257,7 +8026,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7272,7 +8042,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7286,7 +8057,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7305,7 +8077,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7319,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", @@ -7336,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", @@ -7354,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", @@ -7392,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", @@ -7424,11 +8217,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 2, @@ -7453,7 +8248,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7467,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": { @@ -7485,7 +8283,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7500,7 +8299,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7514,7 +8314,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7533,7 +8334,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7547,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": { @@ -7566,7 +8370,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7582,7 +8387,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7595,11 +8401,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7613,7 +8421,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7625,7 +8434,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7640,7 +8450,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7654,7 +8465,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7673,7 +8485,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7687,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", @@ -7704,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", @@ -7722,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": { @@ -7753,7 +8577,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7769,7 +8594,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7782,11 +8608,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7800,7 +8628,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7812,7 +8641,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7827,7 +8657,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7841,7 +8672,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7860,7 +8692,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7874,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", @@ -7891,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", @@ -7909,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", @@ -7947,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", @@ -7973,11 +8824,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "default", "activePriority": 2, @@ -8002,7 +8855,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8016,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": { @@ -8034,7 +8890,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8049,7 +8906,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8063,7 +8921,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8082,7 +8941,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8096,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": { @@ -8115,7 +8977,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8131,7 +8994,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8144,11 +9008,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8162,7 +9028,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8174,7 +9041,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8189,7 +9057,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8203,7 +9072,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8222,7 +9092,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8236,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", @@ -8253,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", @@ -8271,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": { @@ -8302,7 +9184,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8318,7 +9201,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8331,11 +9215,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8349,7 +9235,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8361,7 +9248,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8376,7 +9264,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8390,7 +9279,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8409,7 +9299,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8423,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", @@ -8440,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", @@ -8458,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", @@ -8496,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", @@ -8522,11 +9431,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 2, @@ -8551,7 +9462,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8565,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": { @@ -8583,7 +9497,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8598,7 +9513,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8612,7 +9528,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8631,7 +9548,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8645,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": { @@ -8664,7 +9584,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8680,7 +9601,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8693,11 +9615,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8711,7 +9635,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8723,7 +9648,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8738,7 +9664,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8752,7 +9679,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8771,7 +9699,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8785,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", @@ -8802,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", @@ -8820,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": { @@ -8851,7 +9791,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8867,7 +9808,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8880,11 +9822,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8898,7 +9842,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8910,7 +9855,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8925,7 +9871,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8939,7 +9886,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8958,7 +9906,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8972,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", @@ -8989,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", @@ -9007,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", @@ -9045,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", @@ -9071,11 +10038,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -9101,7 +10070,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9115,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": { @@ -9133,7 +10105,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9152,7 +10125,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9166,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", @@ -9184,7 +10160,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9206,7 +10183,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9220,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", @@ -9238,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": { @@ -9257,7 +10239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9273,7 +10256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9286,11 +10270,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9304,7 +10290,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9316,7 +10303,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9331,7 +10319,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9345,7 +10334,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9364,7 +10354,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9378,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", @@ -9395,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", @@ -9413,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": { @@ -9444,7 +10446,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9460,7 +10463,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9473,11 +10477,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9491,7 +10497,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9503,7 +10510,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9518,7 +10526,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9532,7 +10541,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9551,7 +10561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9565,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", @@ -9582,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", @@ -9600,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", @@ -9638,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", @@ -9664,11 +10693,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 2, @@ -9693,7 +10724,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9707,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": { @@ -9725,7 +10759,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9744,7 +10779,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9758,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", @@ -9776,7 +10814,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9798,7 +10837,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9812,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", @@ -9830,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": { @@ -9849,7 +10893,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9865,7 +10910,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9878,11 +10924,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9896,7 +10944,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9908,7 +10957,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9923,7 +10973,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9937,7 +10988,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9956,7 +11008,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9970,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", @@ -9987,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", @@ -10005,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": { @@ -10036,7 +11100,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10052,7 +11117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10065,11 +11131,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10083,7 +11151,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10095,7 +11164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10110,7 +11180,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10124,7 +11195,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10143,7 +11215,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10157,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", @@ -10174,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", @@ -10192,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", @@ -10230,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", @@ -10256,11 +11347,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 2, @@ -10286,7 +11379,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10300,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", @@ -10318,7 +11414,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10341,7 +11438,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10355,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", @@ -10373,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": { @@ -10392,7 +11494,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10408,7 +11511,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10421,11 +11525,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10439,7 +11545,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10451,7 +11558,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10466,7 +11574,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10480,7 +11589,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10499,7 +11609,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10513,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", @@ -10530,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", @@ -10548,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": { @@ -10579,7 +11701,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10595,7 +11718,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10608,11 +11732,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10626,7 +11752,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10638,7 +11765,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10653,7 +11781,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10667,7 +11796,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10686,7 +11816,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10700,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", @@ -10717,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", @@ -10735,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", @@ -10773,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", @@ -10793,11 +11940,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 2, @@ -10823,7 +11972,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10837,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", @@ -10855,7 +12007,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10878,7 +12031,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10892,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", @@ -10910,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": { @@ -10929,7 +12087,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10945,7 +12104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10958,11 +12118,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10976,7 +12138,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10988,7 +12151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11003,7 +12167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11017,7 +12182,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11036,7 +12202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11050,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", @@ -11067,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", @@ -11085,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": { @@ -11116,7 +12294,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11132,7 +12311,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11145,11 +12325,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11163,7 +12345,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11175,7 +12358,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11190,7 +12374,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11204,7 +12389,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11223,7 +12409,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11237,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", @@ -11254,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", @@ -11272,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", @@ -11310,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", @@ -11330,11 +12533,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 2, @@ -11357,7 +12562,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11371,7 +12577,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11394,7 +12601,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11408,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", @@ -11426,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": { @@ -11445,7 +12657,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11461,7 +12674,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11474,11 +12688,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11492,7 +12708,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11504,7 +12721,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11519,7 +12737,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11533,7 +12752,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11552,7 +12772,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11566,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", @@ -11583,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", @@ -11601,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": { @@ -11632,7 +12864,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11648,7 +12881,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11661,11 +12895,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11679,7 +12915,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11691,7 +12928,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11706,7 +12944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11720,7 +12959,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11739,7 +12979,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11753,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", @@ -11770,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", @@ -11788,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", @@ -11826,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", @@ -11846,11 +13103,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/dwzy.json b/src/lib/runners/dwzy.json index 2af4ca44f..46bb1cc2b 100644 --- a/src/lib/runners/dwzy.json +++ b/src/lib/runners/dwzy.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -34,11 +36,14 @@ "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", diff --git a/src/lib/runners/dyoq.json b/src/lib/runners/dyoq.json index 825ef4a50..40f4244f3 100644 --- a/src/lib/runners/dyoq.json +++ b/src/lib/runners/dyoq.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "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,21 +179,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", @@ -195,7 +216,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/eagi.json b/src/lib/runners/eagi.json index 8fece100f..4f4b5e830 100644 --- a/src/lib/runners/eagi.json +++ b/src/lib/runners/eagi.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32,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", @@ -50,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", @@ -68,11 +73,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 4, "containerState": "ready", @@ -89,7 +96,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/ednv.json b/src/lib/runners/ednv.json index c291ee282..bf1af6f49 100644 --- a/src/lib/runners/ednv.json +++ b/src/lib/runners/ednv.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -36,7 +37,8 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", @@ -53,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/edzu.json b/src/lib/runners/edzu.json index 3d94bc9c0..124e4d5a1 100644 --- a/src/lib/runners/edzu.json +++ b/src/lib/runners/edzu.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -47,7 +49,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -60,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", @@ -77,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", @@ -94,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", @@ -111,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", @@ -128,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", @@ -145,15 +158,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 }, "numLeafNodes": 7, "containerState": "ready", diff --git a/src/lib/runners/ehxq.json b/src/lib/runners/ehxq.json index 99e7f18d2..11a8f5f1f 100644 --- a/src/lib/runners/ehxq.json +++ b/src/lib/runners/ehxq.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -56,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", @@ -73,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", @@ -90,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", @@ -107,15 +116,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 }, "numLeafNodes": 5, "containerState": "ready", @@ -132,7 +145,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/elku.json b/src/lib/runners/elku.json index c74ab36aa..2efd5ff42 100644 --- a/src/lib/runners/elku.json +++ b/src/lib/runners/elku.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/elyq.json b/src/lib/runners/elyq.json index f205f22aa..47f24efa5 100644 --- a/src/lib/runners/elyq.json +++ b/src/lib/runners/elyq.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -34,11 +36,14 @@ "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", diff --git a/src/lib/runners/envj.json b/src/lib/runners/envj.json index a56bba432..94213fa4e 100644 --- a/src/lib/runners/envj.json +++ b/src/lib/runners/envj.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -79,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", @@ -100,17 +108,22 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/eozk.json b/src/lib/runners/eozk.json index 2f84f796e..546545a01 100644 --- a/src/lib/runners/eozk.json +++ b/src/lib/runners/eozk.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "Amult", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/epoi.json b/src/lib/runners/epoi.json index 9686e2e1d..436d4caa0 100644 --- a/src/lib/runners/epoi.json +++ b/src/lib/runners/epoi.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", @@ -94,7 +103,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/etae.json b/src/lib/runners/etae.json index 63d1c44bc..5f04758e6 100644 --- a/src/lib/runners/etae.json +++ b/src/lib/runners/etae.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", diff --git a/src/lib/runners/etku.json b/src/lib/runners/etku.json index d745461ca..3be06b5e3 100644 --- a/src/lib/runners/etku.json +++ b/src/lib/runners/etku.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -36,7 +37,8 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/evqx.json b/src/lib/runners/evqx.json index 7eb671837..4e89cc6fa 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,13 +40,16 @@ "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, @@ -65,7 +70,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -79,7 +85,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -90,13 +97,16 @@ "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, diff --git a/src/lib/runners/eweo.json b/src/lib/runners/eweo.json index 6938d6272..22dfd7374 100644 --- a/src/lib/runners/eweo.json +++ b/src/lib/runners/eweo.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -68,7 +72,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -82,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -96,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", @@ -117,21 +126,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/exbn.json b/src/lib/runners/exbn.json index 27b989cf0..e8e616fc2 100644 --- a/src/lib/runners/exbn.json +++ b/src/lib/runners/exbn.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "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,21 +179,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", @@ -198,7 +219,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -210,7 +232,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -224,7 +247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -237,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": { @@ -259,7 +287,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -271,7 +300,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -283,7 +313,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -299,7 +330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -313,7 +345,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -327,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", @@ -348,21 +384,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -383,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -395,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -409,7 +453,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -422,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": { @@ -444,7 +493,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -456,7 +506,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -468,7 +519,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -484,7 +536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -498,7 +551,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -512,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", @@ -533,21 +590,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -569,7 +632,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -581,7 +645,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -595,7 +660,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -608,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": { @@ -630,7 +700,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -642,7 +713,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -654,7 +726,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -670,7 +743,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -684,7 +758,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -699,7 +774,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -711,7 +787,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -725,7 +802,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -738,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", @@ -767,21 +851,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -802,7 +892,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -814,7 +905,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -828,7 +920,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -841,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": { @@ -863,7 +960,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -875,7 +973,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -887,7 +986,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -903,7 +1003,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -917,7 +1018,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -932,7 +1034,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -944,7 +1047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -958,7 +1062,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -971,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", @@ -1000,21 +1111,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -1032,7 +1149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1044,7 +1162,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1060,7 +1179,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1074,7 +1194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1089,7 +1210,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1101,7 +1223,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1115,7 +1238,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1128,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", @@ -1157,15 +1287,19 @@ 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, @@ -1183,7 +1317,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1195,7 +1330,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1211,7 +1347,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1225,7 +1362,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1240,7 +1378,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1252,7 +1391,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1266,7 +1406,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1279,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", @@ -1308,15 +1455,19 @@ 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": "showFuncUnbound", "activePriority": 2, @@ -1334,7 +1485,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1346,7 +1498,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1362,7 +1515,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1376,7 +1530,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1391,7 +1546,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1403,7 +1559,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1417,7 +1574,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1430,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", @@ -1459,15 +1623,19 @@ 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, @@ -1486,7 +1654,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1498,7 +1667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1514,7 +1684,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1528,7 +1699,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1543,7 +1715,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1555,7 +1728,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1569,7 +1743,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1582,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", @@ -1611,15 +1792,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -1637,7 +1822,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1649,7 +1835,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1665,7 +1852,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1679,7 +1867,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1694,7 +1883,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1706,7 +1896,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1720,7 +1911,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1733,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", @@ -1762,15 +1960,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -1788,7 +1990,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1800,7 +2003,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1816,7 +2020,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1830,7 +2035,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1844,7 +2050,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1857,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", @@ -1880,15 +2091,19 @@ 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, @@ -1906,7 +2121,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1918,7 +2134,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1934,7 +2151,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1948,7 +2166,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1962,7 +2181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1975,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", @@ -1998,15 +2222,19 @@ 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": "showFuncBound", "activePriority": 2, @@ -2024,7 +2252,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2036,7 +2265,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2052,7 +2282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2066,7 +2297,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2080,7 +2312,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2093,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", @@ -2116,15 +2353,19 @@ 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, @@ -2143,7 +2384,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2155,7 +2397,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2171,7 +2414,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2185,7 +2429,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2199,7 +2444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2212,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", @@ -2235,15 +2485,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -2261,7 +2515,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2273,7 +2528,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2289,7 +2545,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2303,7 +2560,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2317,7 +2575,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2330,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", @@ -2353,15 +2616,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -2379,7 +2646,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2391,7 +2659,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2407,7 +2676,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2420,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", @@ -2437,15 +2709,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/ezmz.json b/src/lib/runners/ezmz.json index 15c932f12..f675c8ab5 100644 --- a/src/lib/runners/ezmz.json +++ b/src/lib/runners/ezmz.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "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": "questionFoodGrey", @@ -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": "questionFoodGrey", @@ -164,22 +179,28 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", @@ -196,7 +217,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/fclo.json b/src/lib/runners/fclo.json index b615e2a1b..d561d31d2 100644 --- a/src/lib/runners/fclo.json +++ b/src/lib/runners/fclo.json @@ -15,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -40,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", @@ -59,11 +64,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/fdig.json b/src/lib/runners/fdig.json index 3323b28b5..a1bab3d16 100644 --- a/src/lib/runners/fdig.json +++ b/src/lib/runners/fdig.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28,11 +29,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/fhkl.json b/src/lib/runners/fhkl.json index c6e536191..bb6ce5f5d 100644 --- a/src/lib/runners/fhkl.json +++ b/src/lib/runners/fhkl.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -57,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", @@ -74,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", @@ -91,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": { @@ -113,7 +124,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -125,7 +137,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -137,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -152,7 +166,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -163,9 +178,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -180,7 +197,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -191,9 +209,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -208,7 +228,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -220,7 +241,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -236,7 +258,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -249,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", @@ -266,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", @@ -289,29 +318,37 @@ 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", @@ -328,7 +365,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/fhrd.json b/src/lib/runners/fhrd.json index 0540af0cd..f92b64593 100644 --- a/src/lib/runners/fhrd.json +++ b/src/lib/runners/fhrd.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/fkat.json b/src/lib/runners/fkat.json index a469730c3..4cb80fb16 100644 --- a/src/lib/runners/fkat.json +++ b/src/lib/runners/fkat.json @@ -16,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -30,7 +31,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -53,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -67,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", @@ -85,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", @@ -102,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", @@ -120,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", @@ -140,11 +152,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 8, "containerState": "ready", diff --git a/src/lib/runners/fkqu.json b/src/lib/runners/fkqu.json index 383164100..b934600c5 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,13 +105,16 @@ ], "emphasizePriority": false, "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, diff --git a/src/lib/runners/fkvy.json b/src/lib/runners/fkvy.json index 056ac89ff..9606a7619 100644 --- a/src/lib/runners/fkvy.json +++ b/src/lib/runners/fkvy.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32,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": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -67,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -80,11 +85,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -98,7 +105,8 @@ 1 ], "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": { "type": "conditional", @@ -125,7 +134,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -139,7 +149,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -158,7 +169,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -172,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", @@ -189,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", @@ -207,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": { @@ -238,7 +261,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -254,7 +278,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -267,11 +292,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -285,7 +312,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -297,7 +325,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -312,7 +341,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -326,7 +356,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -345,7 +376,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -359,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", @@ -376,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", @@ -394,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", @@ -432,11 +477,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/fljg.json b/src/lib/runners/fljg.json index 98951a25e..5021b8056 100644 --- a/src/lib/runners/fljg.json +++ b/src/lib/runners/fljg.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "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": "questionFoodGrey", @@ -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": "questionFoodGrey", @@ -164,22 +179,28 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/fogc.json b/src/lib/runners/fogc.json index 2d7097568..fd9224a2e 100644 --- a/src/lib/runners/fogc.json +++ b/src/lib/runners/fogc.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/fsgq.json b/src/lib/runners/fsgq.json index 953515110..663e611d6 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,21 +179,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": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1, @@ -199,7 +220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -211,7 +233,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -225,7 +248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -238,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": { @@ -260,7 +288,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -272,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -284,7 +314,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -300,7 +331,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -314,7 +346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -328,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", @@ -349,21 +385,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -385,7 +427,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -397,7 +440,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -411,7 +455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -424,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": { @@ -446,7 +495,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -458,7 +508,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -470,7 +521,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -486,7 +538,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -500,7 +553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -515,7 +569,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -527,7 +582,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -541,7 +597,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -554,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", @@ -583,21 +646,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -618,7 +687,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -630,7 +700,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -644,7 +715,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -657,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": { @@ -679,7 +755,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -691,7 +768,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -703,7 +781,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -719,7 +798,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -733,7 +813,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -748,7 +829,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -760,7 +842,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -774,7 +857,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -787,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", @@ -816,21 +906,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -848,7 +944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -860,7 +957,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -876,7 +974,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -890,7 +989,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -905,7 +1005,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -917,7 +1018,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -931,7 +1033,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -944,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", @@ -973,15 +1082,19 @@ 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, @@ -999,7 +1112,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1011,7 +1125,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1027,7 +1142,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1041,7 +1157,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1056,7 +1173,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1068,7 +1186,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1082,7 +1201,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1095,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", @@ -1124,15 +1250,19 @@ 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": "showFuncUnbound", "activePriority": 2, @@ -1150,7 +1280,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1162,7 +1293,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1178,7 +1310,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1192,7 +1325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1207,7 +1341,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1219,7 +1354,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1233,7 +1369,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1246,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", @@ -1275,15 +1418,19 @@ 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, @@ -1302,7 +1449,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1314,7 +1462,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1330,7 +1479,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1344,7 +1494,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1359,7 +1510,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1371,7 +1523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1385,7 +1538,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1398,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", @@ -1427,15 +1587,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -1453,7 +1617,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1465,7 +1630,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1481,7 +1647,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1495,7 +1662,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1510,7 +1678,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1522,7 +1691,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1536,7 +1706,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1549,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", @@ -1578,15 +1755,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -1604,7 +1785,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1616,7 +1798,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1632,7 +1815,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1646,7 +1830,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1660,7 +1845,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1673,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", @@ -1696,15 +1886,19 @@ 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, @@ -1722,7 +1916,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1734,7 +1929,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1750,7 +1946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1764,7 +1961,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1778,7 +1976,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1791,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", @@ -1814,15 +2017,19 @@ 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": "showFuncBound", "activePriority": 2, @@ -1840,7 +2047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1852,7 +2060,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1868,7 +2077,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1882,7 +2092,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1896,7 +2107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1909,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", @@ -1932,15 +2148,19 @@ 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, @@ -1959,7 +2179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1971,7 +2192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1987,7 +2209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2001,7 +2224,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2015,7 +2239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2028,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", @@ -2051,15 +2280,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -2077,7 +2310,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2089,7 +2323,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2105,7 +2340,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2119,7 +2355,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2133,7 +2370,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2146,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", @@ -2169,15 +2411,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -2195,7 +2441,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2207,7 +2454,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2223,7 +2471,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2236,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", @@ -2253,15 +2504,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/fton.json b/src/lib/runners/fton.json index b23d32ece..4ea1f3cc2 100644 --- a/src/lib/runners/fton.json +++ b/src/lib/runners/fton.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "C", @@ -67,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": { @@ -86,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -110,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -121,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", @@ -144,23 +158,28 @@ ], "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", diff --git a/src/lib/runners/fxde.json b/src/lib/runners/fxde.json index 5ff33ab33..da23186cc 100644 --- a/src/lib/runners/fxde.json +++ b/src/lib/runners/fxde.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/fxok.json b/src/lib/runners/fxok.json index 2ae6ba9b8..e42ffb44d 100644 --- a/src/lib/runners/fxok.json +++ b/src/lib/runners/fxok.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/gemh.json b/src/lib/runners/gemh.json index a7fb1ab52..cf764fe47 100644 --- a/src/lib/runners/gemh.json +++ b/src/lib/runners/gemh.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/ggxl.json b/src/lib/runners/ggxl.json index 6ce6e5781..7ae69a912 100644 --- a/src/lib/runners/ggxl.json +++ b/src/lib/runners/ggxl.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27,11 +28,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/ghwe.json b/src/lib/runners/ghwe.json index 303e72f46..bb0c5ff9f 100644 --- a/src/lib/runners/ghwe.json +++ b/src/lib/runners/ghwe.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -43,7 +45,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -57,7 +60,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -72,7 +76,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -86,19 +91,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "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", diff --git a/src/lib/runners/glbk.json b/src/lib/runners/glbk.json index 70b47e061..913e0868a 100644 --- a/src/lib/runners/glbk.json +++ b/src/lib/runners/glbk.json @@ -15,7 +15,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "blankNumberYellow", @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "blankNumberRed", @@ -41,9 +43,11 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/gmgs.json b/src/lib/runners/gmgs.json index 2f57c1cf8..0534e0496 100644 --- a/src/lib/runners/gmgs.json +++ b/src/lib/runners/gmgs.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -56,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", @@ -73,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", @@ -90,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", @@ -107,15 +116,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 }, "numLeafNodes": 5, "containerState": "ready", diff --git a/src/lib/runners/gmzn.json b/src/lib/runners/gmzn.json index 1709149a3..5b6ff5930 100644 --- a/src/lib/runners/gmzn.json +++ b/src/lib/runners/gmzn.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -43,7 +45,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -57,7 +60,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -72,7 +76,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -86,19 +91,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "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", @@ -118,7 +128,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -132,7 +143,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -147,7 +159,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -161,7 +174,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -176,7 +190,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -190,19 +205,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "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, @@ -223,7 +243,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -237,7 +258,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -252,7 +274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -266,7 +289,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -281,7 +305,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -295,19 +320,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "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, @@ -329,7 +359,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -343,7 +374,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -359,7 +391,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -373,7 +406,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -389,7 +423,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -403,19 +438,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "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, @@ -436,7 +476,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -450,7 +491,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -466,7 +508,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -480,7 +523,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -496,7 +540,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -510,19 +555,24 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "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, @@ -544,7 +594,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -558,7 +609,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -574,7 +626,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -588,13 +641,16 @@ ], "emphasizePriority": false, "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, diff --git a/src/lib/runners/gngw.json b/src/lib/runners/gngw.json index c3af455c2..9b264daeb 100644 --- a/src/lib/runners/gngw.json +++ b/src/lib/runners/gngw.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32,7 +33,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -61,7 +63,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -75,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", @@ -93,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", @@ -111,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", @@ -129,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": { @@ -148,7 +159,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -164,7 +176,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -177,11 +190,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -195,7 +210,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -207,7 +223,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -222,7 +239,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -236,7 +254,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -255,7 +274,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -269,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", @@ -286,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", @@ -304,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": { @@ -335,7 +366,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -351,7 +383,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -364,11 +397,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -382,7 +417,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -394,7 +430,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -409,7 +446,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -423,7 +461,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -442,7 +481,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -456,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", @@ -473,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", @@ -491,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", @@ -529,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", @@ -549,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", @@ -567,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", @@ -585,11 +645,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 4, diff --git a/src/lib/runners/gnwm.json b/src/lib/runners/gnwm.json index 64377a0b5..4bbcfaccf 100644 --- a/src/lib/runners/gnwm.json +++ b/src/lib/runners/gnwm.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28,11 +29,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/gpat.json b/src/lib/runners/gpat.json index 637b1fec4..bc09f6150 100644 --- a/src/lib/runners/gpat.json +++ b/src/lib/runners/gpat.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -67,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": { @@ -86,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -110,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -121,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": { @@ -144,7 +158,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -156,7 +171,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -170,7 +186,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -183,31 +200,39 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 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", @@ -227,7 +252,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -242,7 +268,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -257,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -269,7 +297,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -280,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": { @@ -299,7 +331,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -311,7 +344,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -323,7 +357,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -334,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": { @@ -357,7 +396,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -369,7 +409,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -383,7 +424,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -396,31 +438,39 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 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", @@ -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,31 +677,39 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 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", @@ -656,7 +731,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -671,7 +747,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -686,7 +763,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -698,7 +776,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -709,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": { @@ -728,7 +810,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -740,7 +823,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -752,7 +836,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -763,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": { @@ -786,7 +875,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -798,7 +888,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -812,7 +903,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -826,7 +918,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -838,7 +931,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -850,7 +944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -861,37 +956,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 }, - "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", @@ -912,7 +1018,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -927,7 +1034,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -942,7 +1050,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -954,7 +1063,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -965,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": { @@ -984,7 +1097,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -996,7 +1110,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1008,7 +1123,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1019,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": { @@ -1042,7 +1162,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1054,7 +1175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1068,7 +1190,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1082,7 +1205,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1094,7 +1218,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1106,7 +1231,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1117,37 +1243,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 }, - "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", @@ -1168,7 +1305,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1183,7 +1321,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "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": { "name": "c", @@ -1221,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": { @@ -1241,7 +1385,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1255,7 +1400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1269,7 +1415,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1281,7 +1428,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1293,7 +1441,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1304,31 +1453,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": "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", @@ -1349,7 +1507,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1364,7 +1523,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1379,7 +1539,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1391,7 +1552,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1402,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": { @@ -1422,7 +1587,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1436,7 +1602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1450,7 +1617,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1462,7 +1630,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1474,7 +1643,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1485,31 +1655,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": "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", @@ -1530,7 +1709,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1545,7 +1725,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1560,7 +1741,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1572,7 +1754,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1583,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": { @@ -1603,7 +1789,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1617,7 +1804,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1631,7 +1819,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1643,7 +1832,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1655,7 +1845,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1666,31 +1857,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": "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", @@ -1712,7 +1912,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1727,7 +1928,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1742,7 +1944,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1754,7 +1957,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1765,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": { @@ -1785,7 +1992,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1800,7 +2008,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1812,7 +2021,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1823,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": { @@ -1841,7 +2054,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1853,7 +2067,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1865,7 +2080,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1876,31 +2092,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": "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", @@ -1921,7 +2146,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1936,7 +2162,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1951,7 +2178,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1963,7 +2191,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1974,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": { @@ -1994,7 +2226,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2009,7 +2242,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2021,7 +2255,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2032,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": { @@ -2050,7 +2288,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2062,7 +2301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2074,7 +2314,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2085,31 +2326,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": "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", @@ -2130,7 +2380,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2145,7 +2396,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2160,7 +2412,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2172,7 +2425,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2183,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": { @@ -2203,7 +2460,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2215,7 +2473,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2227,7 +2486,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2238,25 +2498,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 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", @@ -2277,7 +2544,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2292,7 +2560,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2307,7 +2576,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2319,7 +2589,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2330,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": { @@ -2350,7 +2624,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2362,7 +2637,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2374,7 +2650,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2385,25 +2662,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": "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", @@ -2424,7 +2708,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2439,7 +2724,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2454,7 +2740,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2466,7 +2753,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2477,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": { @@ -2497,7 +2788,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2509,7 +2801,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2521,7 +2814,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2532,25 +2826,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": "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", @@ -2572,7 +2873,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2587,7 +2889,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2602,7 +2905,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2614,7 +2918,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2625,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": { @@ -2645,7 +2953,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2657,7 +2966,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2669,7 +2979,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2680,25 +2991,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": "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", @@ -2719,7 +3037,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2734,7 +3053,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2749,7 +3069,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2761,7 +3082,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2772,19 +3094,24 @@ "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", @@ -2805,7 +3132,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2820,7 +3148,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2835,7 +3164,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2847,7 +3177,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2858,19 +3189,24 @@ "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", @@ -2891,7 +3227,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2906,7 +3243,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2921,7 +3259,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2933,7 +3272,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2944,19 +3284,24 @@ "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", @@ -2978,7 +3323,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2993,7 +3339,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3008,7 +3355,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3020,7 +3368,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3031,19 +3380,24 @@ "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", @@ -3064,7 +3418,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3078,7 +3433,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3089,13 +3445,16 @@ "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", @@ -3116,7 +3475,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3130,7 +3490,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3141,13 +3502,16 @@ "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, @@ -3168,7 +3532,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3182,7 +3547,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3193,13 +3559,16 @@ "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, @@ -3221,7 +3590,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3235,7 +3605,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -3247,13 +3618,16 @@ "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, @@ -3274,7 +3648,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3288,7 +3663,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -3300,13 +3676,16 @@ "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, @@ -3324,7 +3703,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/grla.json b/src/lib/runners/grla.json index 0b088b2ca..cbe7c1226 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,13 +40,16 @@ "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, @@ -61,7 +66,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/gtdu.json b/src/lib/runners/gtdu.json index d12c9c519..79d222ba5 100644 --- a/src/lib/runners/gtdu.json +++ b/src/lib/runners/gtdu.json @@ -15,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,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", @@ -59,11 +64,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/guhy.json b/src/lib/runners/guhy.json index 7a580c610..6a091fff7 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,9 +45,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "falseCaseActive", "activePriority": 1, diff --git a/src/lib/runners/gvxz.json b/src/lib/runners/gvxz.json index 49124caf3..1efd484a1 100644 --- a/src/lib/runners/gvxz.json +++ b/src/lib/runners/gvxz.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberPlusOrMinusOne": "minus" + "shorthandNumberPlusOrMinusOne": "minus", + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "ready", diff --git a/src/lib/runners/gwtp.json b/src/lib/runners/gwtp.json index 32e1e09dc..1bb275570 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,13 +40,16 @@ "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, @@ -65,7 +70,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -79,7 +85,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -90,13 +97,16 @@ "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, diff --git a/src/lib/runners/hafp.json b/src/lib/runners/hafp.json index 4472d6747..6d221e60e 100644 --- a/src/lib/runners/hafp.json +++ b/src/lib/runners/hafp.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -70,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,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", @@ -120,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", @@ -138,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": { @@ -163,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -178,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -194,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -207,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", @@ -224,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": { @@ -244,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -260,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -273,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", @@ -290,27 +317,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "ready", diff --git a/src/lib/runners/hbbv.json b/src/lib/runners/hbbv.json index 054b1d826..3dba88d3d 100644 --- a/src/lib/runners/hbbv.json +++ b/src/lib/runners/hbbv.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/hdhy.json b/src/lib/runners/hdhy.json index 2f75f71eb..267490474 100644 --- a/src/lib/runners/hdhy.json +++ b/src/lib/runners/hdhy.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -53,7 +56,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -67,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -80,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", @@ -103,15 +112,19 @@ 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": "active", "activePriority": 2, @@ -129,7 +142,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -141,7 +155,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -157,7 +172,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -171,7 +187,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -185,7 +202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -198,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", @@ -221,15 +243,19 @@ 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": "showFuncBound", "activePriority": 2, @@ -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,15 +374,19 @@ 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, @@ -366,7 +405,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -378,7 +418,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -394,7 +435,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -408,7 +450,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -422,7 +465,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -435,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", @@ -458,15 +506,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -484,7 +536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -496,7 +549,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -512,7 +566,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -526,7 +581,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -540,7 +596,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -553,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", @@ -576,15 +637,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -602,7 +667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -614,7 +680,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -630,7 +697,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -643,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", @@ -660,15 +730,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/hdxc.json b/src/lib/runners/hdxc.json index 1e6f2cbaf..6e2ef93a9 100644 --- a/src/lib/runners/hdxc.json +++ b/src/lib/runners/hdxc.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -65,19 +69,24 @@ "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", @@ -96,7 +105,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -110,7 +120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -125,7 +136,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -137,7 +149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -148,19 +161,24 @@ "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", @@ -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,19 +254,24 @@ "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", @@ -264,7 +291,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -278,7 +306,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -293,7 +322,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -305,7 +335,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -316,19 +347,24 @@ "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", @@ -349,7 +385,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -363,7 +400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -378,7 +416,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -390,7 +429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -401,19 +441,24 @@ "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", @@ -433,7 +478,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -447,7 +493,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -458,13 +505,16 @@ "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", @@ -484,7 +534,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -498,7 +549,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -509,13 +561,16 @@ "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, @@ -535,7 +590,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -549,7 +605,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -560,13 +617,16 @@ "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, @@ -586,7 +646,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -600,7 +661,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -611,13 +673,16 @@ "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, @@ -638,7 +703,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -652,7 +718,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "h", @@ -663,13 +730,16 @@ "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, @@ -689,7 +759,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -703,7 +774,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "h", @@ -714,13 +786,16 @@ "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, @@ -737,7 +812,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/hehx.json b/src/lib/runners/hehx.json index 0e20250cf..ef5c6362f 100644 --- a/src/lib/runners/hehx.json +++ b/src/lib/runners/hehx.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "Amult", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/hhdu.json b/src/lib/runners/hhdu.json index 973cf2676..f346f0524 100644 --- a/src/lib/runners/hhdu.json +++ b/src/lib/runners/hhdu.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/hhjq.json b/src/lib/runners/hhjq.json index e82919a94..b87a06e80 100644 --- a/src/lib/runners/hhjq.json +++ b/src/lib/runners/hhjq.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -67,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": { @@ -86,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -110,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -121,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", @@ -144,23 +158,28 @@ ], "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", diff --git a/src/lib/runners/hluq.json b/src/lib/runners/hluq.json index 3fc3a1b04..fb52f8348 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,13 +56,16 @@ "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, @@ -79,7 +86,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -90,9 +98,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -106,7 +116,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -117,13 +128,16 @@ "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, @@ -144,7 +158,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -155,9 +170,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -171,7 +188,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -182,13 +200,16 @@ "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, @@ -210,7 +231,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -221,9 +243,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -237,7 +261,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -249,7 +274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -260,15 +286,19 @@ "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, @@ -289,7 +319,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -300,9 +331,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -316,7 +349,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -328,7 +362,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -339,15 +374,19 @@ "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, @@ -365,7 +404,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -376,9 +416,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/hnyn.json b/src/lib/runners/hnyn.json index 13e1b4896..fbf84db69 100644 --- a/src/lib/runners/hnyn.json +++ b/src/lib/runners/hnyn.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -53,7 +56,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -67,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -80,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", @@ -103,15 +112,19 @@ 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": "active", "activePriority": 2, @@ -129,7 +142,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -141,7 +155,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -157,7 +172,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -171,7 +187,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -185,7 +202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -198,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", @@ -221,15 +243,19 @@ 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": "showFuncBound", "activePriority": 2, @@ -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,15 +374,19 @@ 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, @@ -366,7 +405,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -378,7 +418,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -394,7 +435,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -408,7 +450,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -422,7 +465,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -435,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", @@ -458,15 +506,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -484,7 +536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -496,7 +549,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -512,7 +566,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -526,7 +581,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -540,7 +596,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -553,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", @@ -576,15 +637,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -602,7 +667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -614,7 +680,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -630,7 +697,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -643,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", @@ -660,15 +730,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/htir.json b/src/lib/runners/htir.json index 75095f2ff..b3b1fa183 100644 --- a/src/lib/runners/htir.json +++ b/src/lib/runners/htir.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -70,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,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", @@ -120,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", @@ -138,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": { @@ -163,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -178,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -194,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -207,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", @@ -224,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": { @@ -244,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -260,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -273,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", @@ -290,27 +317,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "ready", @@ -327,7 +361,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/hvfb.json b/src/lib/runners/hvfb.json index c4198a431..e9bfa6a9b 100644 --- a/src/lib/runners/hvfb.json +++ b/src/lib/runners/hvfb.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "binaryFirst" + "shorthandNumberAfterConvert": "binaryFirst", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "binarySecond" + "shorthandNumberAfterConvert": "binarySecond", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +46,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -68,7 +72,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -80,7 +85,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -96,7 +102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -110,7 +117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -124,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": { @@ -146,7 +157,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -160,31 +172,40 @@ 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", diff --git a/src/lib/runners/hvqh.json b/src/lib/runners/hvqh.json index 1f40876c4..674f8c4a8 100644 --- a/src/lib/runners/hvqh.json +++ b/src/lib/runners/hvqh.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "n", @@ -22,9 +23,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 1, "containerState": "ready", diff --git a/src/lib/runners/hvqy.json b/src/lib/runners/hvqy.json index 2251efe27..68713c3c8 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/hykj.json b/src/lib/runners/hykj.json index 4a5c075e2..81adac111 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,19 +70,24 @@ "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, @@ -98,7 +107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +122,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -126,7 +137,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -140,7 +152,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -151,19 +164,24 @@ "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, @@ -184,7 +202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -198,7 +217,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -212,7 +232,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -226,7 +247,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -237,19 +259,24 @@ "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, @@ -269,7 +296,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -283,7 +311,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -297,7 +326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -311,7 +341,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -322,19 +353,24 @@ "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, @@ -354,7 +390,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -368,7 +405,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -379,13 +417,16 @@ "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, @@ -405,7 +446,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -419,7 +461,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -430,13 +473,16 @@ "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, @@ -456,7 +502,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -470,7 +517,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -481,13 +529,16 @@ "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, @@ -507,7 +558,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -521,7 +573,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -532,13 +585,16 @@ "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, @@ -559,7 +615,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -573,7 +630,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -584,13 +642,16 @@ "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, @@ -610,7 +671,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -624,7 +686,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -635,13 +698,16 @@ "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, @@ -658,7 +724,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/iatt.json b/src/lib/runners/iatt.json index df5a75f46..2180b97ee 100644 --- a/src/lib/runners/iatt.json +++ b/src/lib/runners/iatt.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,9 +45,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 3, "containerState": "ready", @@ -62,7 +66,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/iczf.json b/src/lib/runners/iczf.json index 9745d1492..fbdbb3168 100644 --- a/src/lib/runners/iczf.json +++ b/src/lib/runners/iczf.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32,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", @@ -50,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", @@ -68,11 +73,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 4, "containerState": "ready", diff --git a/src/lib/runners/ifiq.json b/src/lib/runners/ifiq.json index d8bd77425..2db42eb68 100644 --- a/src/lib/runners/ifiq.json +++ b/src/lib/runners/ifiq.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -55,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", @@ -72,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": { @@ -94,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -106,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -133,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -144,9 +157,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -161,7 +176,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -172,9 +188,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -189,7 +207,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -201,7 +220,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -217,7 +237,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -230,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", @@ -247,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", @@ -270,29 +297,37 @@ 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", @@ -312,7 +347,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -324,7 +360,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -340,7 +377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -353,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", @@ -370,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": { @@ -392,7 +436,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -404,7 +449,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -416,7 +462,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -431,7 +478,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -442,9 +490,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -459,7 +509,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -470,9 +521,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -487,7 +540,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -499,7 +553,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -515,7 +570,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -528,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", @@ -545,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", @@ -568,29 +630,37 @@ 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, @@ -611,7 +681,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -623,7 +694,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -639,7 +711,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -652,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", @@ -669,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": { @@ -691,7 +770,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -703,7 +783,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -715,7 +796,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -730,7 +812,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -741,9 +824,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -758,7 +843,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -769,9 +855,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -786,7 +874,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -798,7 +887,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -814,7 +904,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -827,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", @@ -844,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", @@ -867,29 +964,37 @@ 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, @@ -911,7 +1016,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -923,7 +1029,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -939,7 +1046,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -952,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", @@ -969,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": { @@ -991,7 +1105,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1003,7 +1118,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1015,7 +1131,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1030,7 +1147,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1041,9 +1159,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1058,7 +1178,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1069,9 +1190,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1086,7 +1209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1098,7 +1222,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1114,7 +1239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1127,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", @@ -1144,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": { @@ -1168,7 +1300,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1180,7 +1313,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1196,7 +1330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1209,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", @@ -1226,37 +1363,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 }, "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, @@ -1277,7 +1425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1289,7 +1438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1305,7 +1455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1318,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", @@ -1335,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": { @@ -1357,7 +1514,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1369,7 +1527,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1381,7 +1540,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1396,7 +1556,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1407,9 +1568,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1424,7 +1587,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1435,9 +1599,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1452,7 +1618,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1464,7 +1631,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1480,7 +1648,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1493,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", @@ -1510,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": { @@ -1534,7 +1709,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1546,7 +1722,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1562,7 +1739,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1575,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", @@ -1592,37 +1772,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 }, "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, @@ -1640,7 +1831,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1652,7 +1844,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1667,7 +1860,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1678,9 +1872,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1695,7 +1891,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1706,9 +1903,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1723,7 +1922,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1735,7 +1935,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1751,7 +1952,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1764,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", @@ -1781,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": { @@ -1805,7 +2013,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1817,7 +2026,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1833,7 +2043,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1846,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", @@ -1863,31 +2076,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 }, "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, @@ -1905,7 +2127,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1917,7 +2140,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1932,7 +2156,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1943,9 +2168,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1960,7 +2187,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1971,9 +2199,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1988,7 +2218,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2000,7 +2231,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2016,7 +2248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2029,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", @@ -2046,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": { @@ -2070,7 +2309,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2082,7 +2322,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2098,7 +2339,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2111,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", @@ -2128,31 +2372,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 }, "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -2170,7 +2423,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2182,7 +2436,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2197,7 +2452,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2208,9 +2464,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2225,7 +2483,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2236,9 +2495,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2253,7 +2514,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2265,7 +2527,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2281,7 +2544,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2294,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", @@ -2311,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": { @@ -2335,7 +2605,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2347,7 +2618,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2363,7 +2635,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2376,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", @@ -2393,31 +2668,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 }, "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, @@ -2436,7 +2720,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2448,7 +2733,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2463,7 +2749,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2474,9 +2761,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2491,7 +2780,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2502,9 +2792,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2519,7 +2811,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2531,7 +2824,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2547,7 +2841,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2560,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", @@ -2577,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": { @@ -2601,7 +2902,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2613,7 +2915,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2629,7 +2932,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2643,7 +2947,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2655,7 +2960,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2671,7 +2977,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2684,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", @@ -2701,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": { @@ -2727,7 +3041,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2739,7 +3054,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2755,7 +3071,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2768,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", @@ -2785,39 +3104,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -2835,7 +3166,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2847,7 +3179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2862,7 +3195,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2873,9 +3207,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2890,7 +3226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2901,9 +3238,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2918,7 +3257,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2930,7 +3270,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2946,7 +3287,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2959,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", @@ -2976,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": { @@ -3000,7 +3348,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3012,7 +3361,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3028,7 +3378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3042,7 +3393,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3054,7 +3406,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3070,7 +3423,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3083,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", @@ -3100,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": { @@ -3126,7 +3487,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3138,7 +3500,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3154,7 +3517,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3167,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", @@ -3184,39 +3550,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -3234,7 +3612,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3246,7 +3625,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3261,7 +3641,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3272,9 +3653,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3289,7 +3672,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3300,9 +3684,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3317,7 +3703,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3333,7 +3720,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3347,7 +3735,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3359,7 +3748,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3375,7 +3765,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3388,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", @@ -3405,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": { @@ -3431,7 +3829,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3443,7 +3842,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3459,7 +3859,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3472,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", @@ -3489,33 +3892,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": "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, @@ -3533,7 +3946,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3545,7 +3959,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3560,7 +3975,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3571,9 +3987,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3588,7 +4006,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3599,9 +4018,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3616,7 +4037,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3632,7 +4054,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3646,7 +4069,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3658,7 +4082,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3674,7 +4099,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3687,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", @@ -3704,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": { @@ -3730,7 +4163,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3742,7 +4176,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3758,7 +4193,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3771,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", @@ -3788,33 +4226,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": "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -3832,7 +4280,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3844,7 +4293,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3859,7 +4309,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3870,9 +4321,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3887,7 +4340,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3898,9 +4352,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3915,7 +4371,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3931,7 +4388,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3945,7 +4403,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3957,7 +4416,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3973,7 +4433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3986,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", @@ -4003,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": { @@ -4029,7 +4497,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4041,7 +4510,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4057,7 +4527,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4070,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", @@ -4087,33 +4560,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": "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, @@ -4132,7 +4615,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4144,7 +4628,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4159,7 +4644,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4170,9 +4656,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4187,7 +4675,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4198,9 +4687,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4215,7 +4706,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4232,7 +4724,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4243,9 +4736,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4259,7 +4754,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4271,7 +4767,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4287,7 +4784,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4300,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", @@ -4317,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": { @@ -4343,7 +4848,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4355,7 +4861,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4371,7 +4878,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4384,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", @@ -4401,33 +4911,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": "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -4445,7 +4965,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4457,7 +4978,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4472,7 +4994,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4483,9 +5006,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4500,7 +5025,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4511,9 +5037,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4528,7 +5056,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4545,7 +5074,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4556,9 +5086,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4572,7 +5104,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4584,7 +5117,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4600,7 +5134,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4613,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", @@ -4630,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": { @@ -4656,7 +5198,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4668,7 +5211,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4684,7 +5228,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4697,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", @@ -4714,33 +5261,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": "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -4758,7 +5315,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4770,7 +5328,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4785,7 +5344,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4796,9 +5356,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4815,7 +5377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4826,9 +5389,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4842,7 +5407,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4854,7 +5420,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4870,7 +5437,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4883,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", @@ -4900,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": { @@ -4927,7 +5502,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4939,7 +5515,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4955,7 +5532,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4968,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", @@ -4985,27 +5565,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 }, - "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, @@ -5023,7 +5611,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5035,7 +5624,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5050,7 +5640,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5061,9 +5652,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5080,7 +5673,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5091,9 +5685,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5107,7 +5703,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5119,7 +5716,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5135,7 +5733,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5148,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", @@ -5165,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": { @@ -5192,7 +5798,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5204,7 +5811,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5220,7 +5828,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5233,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", @@ -5250,27 +5861,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 }, - "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -5288,7 +5907,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5300,7 +5920,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5315,7 +5936,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5326,9 +5948,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5345,7 +5969,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5356,9 +5981,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5372,7 +5999,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5384,7 +6012,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5400,7 +6029,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5413,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", @@ -5430,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": { @@ -5457,7 +6094,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5469,7 +6107,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5485,7 +6124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5498,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", @@ -5515,27 +6157,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 }, - "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 }, "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 1, @@ -5553,7 +6203,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5565,7 +6216,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5580,7 +6232,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5591,9 +6244,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5610,7 +6265,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5621,9 +6277,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5637,7 +6295,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5649,7 +6308,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5665,7 +6325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5678,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", @@ -5695,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": { @@ -5722,7 +6390,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5734,7 +6403,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5750,7 +6420,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5763,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", @@ -5780,27 +6453,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 }, - "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 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1, @@ -5818,7 +6499,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5830,7 +6512,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5845,7 +6528,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5856,9 +6540,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5875,7 +6561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5886,9 +6573,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5902,7 +6591,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5914,7 +6604,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5930,7 +6621,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -5943,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", @@ -5960,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": { @@ -5987,7 +6686,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5999,7 +6699,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6015,7 +6716,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6028,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", @@ -6045,27 +6749,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 }, - "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, @@ -6084,7 +6796,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6096,7 +6809,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6111,7 +6825,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -6122,9 +6837,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6141,7 +6858,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6152,9 +6870,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6168,7 +6888,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6180,7 +6901,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6196,7 +6918,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6209,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", @@ -6226,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": { @@ -6253,7 +6983,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6265,7 +6996,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6281,7 +7013,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6296,7 +7029,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6307,9 +7041,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6324,7 +7060,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6336,7 +7073,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6352,7 +7090,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6365,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", @@ -6382,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", @@ -6411,27 +7158,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -6449,7 +7204,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6461,7 +7217,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6476,7 +7233,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -6487,9 +7245,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6506,7 +7266,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6517,9 +7278,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6533,7 +7296,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6545,7 +7309,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6561,7 +7326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6574,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", @@ -6591,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": { @@ -6618,7 +7391,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6630,7 +7404,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6646,7 +7421,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6661,7 +7437,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6672,9 +7449,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6689,7 +7468,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6701,7 +7481,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6717,7 +7498,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6730,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", @@ -6747,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", @@ -6776,27 +7566,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -6814,7 +7612,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6826,7 +7625,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6841,7 +7641,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -6852,9 +7653,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6868,7 +7671,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6884,7 +7688,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6899,7 +7704,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6910,9 +7716,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -6927,7 +7735,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6939,7 +7748,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6955,7 +7765,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -6968,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", @@ -6985,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", @@ -7014,21 +7833,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 }, "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, @@ -7046,7 +7871,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7058,7 +7884,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7073,7 +7900,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -7084,9 +7912,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7100,7 +7930,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7116,7 +7947,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7131,7 +7963,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7142,9 +7975,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7159,7 +7994,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7171,7 +8007,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7187,7 +8024,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -7200,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", @@ -7217,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", @@ -7246,21 +8092,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 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -7278,7 +8130,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7290,7 +8143,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7305,7 +8159,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -7316,9 +8171,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7332,7 +8189,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7348,7 +8206,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7363,7 +8222,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7374,9 +8234,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7391,7 +8253,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7403,7 +8266,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7419,7 +8283,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -7432,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", @@ -7449,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", @@ -7478,21 +8351,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 }, "state": "needsAlphaConvert", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 1, @@ -7510,7 +8389,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7522,7 +8402,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7537,7 +8418,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -7548,9 +8430,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7564,7 +8448,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7580,7 +8465,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7595,7 +8481,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7606,9 +8493,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7623,7 +8512,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7635,7 +8525,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7651,7 +8542,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -7664,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", @@ -7681,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", @@ -7710,21 +8610,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 }, "state": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1, @@ -7742,7 +8648,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7754,7 +8661,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7769,7 +8677,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -7780,9 +8689,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7796,7 +8707,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7812,7 +8724,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7827,7 +8740,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7838,9 +8752,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -7855,7 +8771,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7867,7 +8784,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7883,7 +8801,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -7896,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", @@ -7913,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", @@ -7942,21 +8869,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 }, "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, @@ -7975,7 +8908,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7987,7 +8921,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8002,7 +8937,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8013,9 +8949,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8029,7 +8967,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8045,7 +8984,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8060,7 +9000,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8071,9 +9012,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8088,7 +9031,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8100,7 +9044,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8116,7 +9061,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -8129,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", @@ -8146,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": { @@ -8176,7 +9130,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8187,23 +9142,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": 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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -8221,7 +9183,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8233,7 +9196,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8248,7 +9212,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8259,9 +9224,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8275,7 +9242,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8291,7 +9259,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8306,7 +9275,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8317,9 +9287,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8334,7 +9306,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8346,7 +9319,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8362,7 +9336,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -8375,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", @@ -8392,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": { @@ -8422,7 +9405,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8433,23 +9417,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": 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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -8467,7 +9458,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8479,7 +9471,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8495,7 +9488,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8510,7 +9504,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8521,9 +9516,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8538,7 +9535,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8550,7 +9548,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8566,7 +9565,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -8579,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", @@ -8596,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": { @@ -8626,7 +9634,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8637,17 +9646,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": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -8665,7 +9679,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8677,7 +9692,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8693,7 +9709,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8708,7 +9725,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8719,9 +9737,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8736,7 +9756,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8748,7 +9769,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8764,7 +9786,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -8777,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", @@ -8794,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": { @@ -8824,7 +9855,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -8835,17 +9867,22 @@ "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 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, @@ -8863,7 +9900,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8875,7 +9913,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8891,7 +9930,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8906,7 +9946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8917,9 +9958,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -8934,7 +9977,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8946,7 +9990,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8962,7 +10007,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -8975,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", @@ -8992,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": { @@ -9022,7 +10076,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -9033,17 +10088,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": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -9062,7 +10122,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9074,7 +10135,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9090,7 +10152,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9105,7 +10168,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9116,9 +10180,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9133,7 +10199,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9145,7 +10212,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9161,7 +10229,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9174,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", @@ -9191,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": { @@ -9221,7 +10298,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9235,7 +10313,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9250,7 +10329,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9261,9 +10341,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9278,7 +10360,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9290,7 +10373,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9306,7 +10390,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9319,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", @@ -9336,33 +10423,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": "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -9380,7 +10477,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9392,7 +10490,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9408,7 +10507,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9423,7 +10523,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9434,9 +10535,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9451,7 +10554,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9463,7 +10567,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9479,7 +10584,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9492,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", @@ -9509,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": { @@ -9539,7 +10653,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9553,7 +10668,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9568,7 +10684,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9579,9 +10696,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9596,7 +10715,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9608,7 +10728,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9624,7 +10745,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9637,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", @@ -9654,33 +10778,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": "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -9698,7 +10832,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9710,7 +10845,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9724,7 +10860,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9739,7 +10876,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9750,9 +10888,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9767,7 +10907,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9779,7 +10920,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9795,7 +10937,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9808,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", @@ -9825,27 +10970,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 }, - "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, @@ -9863,7 +11016,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9875,7 +11029,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9889,7 +11044,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9904,7 +11060,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9915,9 +11072,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -9932,7 +11091,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9944,7 +11104,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9960,7 +11121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -9973,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", @@ -9990,27 +11154,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 }, - "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -10028,7 +11200,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10040,7 +11213,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10054,7 +11228,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10069,7 +11244,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10080,9 +11256,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -10097,7 +11275,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10109,7 +11288,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10125,7 +11305,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -10138,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", @@ -10155,27 +11338,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 }, - "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, @@ -10194,7 +11385,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10206,7 +11398,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10220,7 +11413,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10235,7 +11429,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10246,9 +11441,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -10263,7 +11460,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10275,7 +11473,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10291,7 +11490,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10305,7 +11505,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10316,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", @@ -10335,27 +11539,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -10373,7 +11585,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10385,7 +11598,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10399,7 +11613,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10414,7 +11629,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10425,9 +11641,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -10442,7 +11660,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10454,7 +11673,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10470,7 +11690,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10484,7 +11705,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10495,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", @@ -10514,27 +11739,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -10552,7 +11785,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10564,7 +11798,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10578,7 +11813,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10592,7 +11828,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10608,7 +11845,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10622,7 +11860,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10633,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", @@ -10652,21 +11894,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 }, "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, @@ -10684,7 +11932,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10696,7 +11945,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10710,7 +11960,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10724,7 +11975,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10740,7 +11992,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10754,7 +12007,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10765,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", @@ -10784,21 +12041,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 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -10816,7 +12079,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10828,7 +12092,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10842,7 +12107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10856,7 +12122,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10872,7 +12139,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10886,7 +12154,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10897,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", @@ -10916,21 +12188,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 }, "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, @@ -10949,7 +12227,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10961,7 +12240,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10975,7 +12255,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10989,7 +12270,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11005,7 +12287,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11019,7 +12302,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11030,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", @@ -11049,21 +12336,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 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -11081,7 +12374,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11093,7 +12387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11107,7 +12402,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11121,7 +12417,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11137,7 +12434,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11151,7 +12449,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11162,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", @@ -11181,21 +12483,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 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -11213,7 +12521,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11225,7 +12534,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11241,7 +12551,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11255,7 +12566,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11266,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", @@ -11285,15 +12600,19 @@ 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, @@ -11311,7 +12630,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11323,7 +12643,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11339,7 +12660,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11353,7 +12675,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11364,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", @@ -11383,15 +12709,19 @@ 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": "showFuncBound", "activePriority": 2, @@ -11409,7 +12739,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11421,7 +12752,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11437,7 +12769,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11451,7 +12784,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11462,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", @@ -11481,15 +12818,19 @@ 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, @@ -11508,7 +12849,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11520,7 +12862,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11536,7 +12879,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11550,7 +12894,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11561,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", @@ -11580,15 +12928,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -11606,7 +12958,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11618,7 +12971,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11632,7 +12986,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11645,15 +13000,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/ifpo.json b/src/lib/runners/ifpo.json index 88a6fd600..c589ed325 100644 --- a/src/lib/runners/ifpo.json +++ b/src/lib/runners/ifpo.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "mathBox", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/igpn.json b/src/lib/runners/igpn.json index 663e3ae5a..647bb7702 100644 --- a/src/lib/runners/igpn.json +++ b/src/lib/runners/igpn.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/igrl.json b/src/lib/runners/igrl.json index 3df82ddb5..8b6226417 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,19 +70,24 @@ "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, diff --git a/src/lib/runners/ilpo.json b/src/lib/runners/ilpo.json index 80f993320..6541b8718 100644 --- a/src/lib/runners/ilpo.json +++ b/src/lib/runners/ilpo.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/ilvq.json b/src/lib/runners/ilvq.json index a08e0e42d..97424d41f 100644 --- a/src/lib/runners/ilvq.json +++ b/src/lib/runners/ilvq.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/immq.json b/src/lib/runners/immq.json index 280184b57..a5cfe9cb4 100644 --- a/src/lib/runners/immq.json +++ b/src/lib/runners/immq.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -52,13 +56,16 @@ "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", diff --git a/src/lib/runners/imyd.json b/src/lib/runners/imyd.json index d54b4d8a8..9f943adf8 100644 --- a/src/lib/runners/imyd.json +++ b/src/lib/runners/imyd.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/issq.json b/src/lib/runners/issq.json index 1df369c32..59975e813 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,15 +69,19 @@ "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, diff --git a/src/lib/runners/itbm.json b/src/lib/runners/itbm.json index 741760558..9fa7511e9 100644 --- a/src/lib/runners/itbm.json +++ b/src/lib/runners/itbm.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -38,13 +40,16 @@ "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", @@ -60,7 +65,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/ivol.json b/src/lib/runners/ivol.json index 2dc5a9c97..f56935f7e 100644 --- a/src/lib/runners/ivol.json +++ b/src/lib/runners/ivol.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/iwmu.json b/src/lib/runners/iwmu.json index 996dd9cd1..d2807c58a 100644 --- a/src/lib/runners/iwmu.json +++ b/src/lib/runners/iwmu.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "ready", diff --git a/src/lib/runners/izgz.json b/src/lib/runners/izgz.json index bf5d856d6..bb0b71a76 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,19 +70,24 @@ "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, @@ -98,7 +107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +122,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -126,7 +137,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -140,7 +152,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -151,19 +164,24 @@ "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, @@ -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,13 +228,16 @@ "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, @@ -234,7 +257,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -248,7 +272,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -259,13 +284,16 @@ "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, @@ -285,7 +313,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -299,7 +328,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -310,13 +340,16 @@ "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, @@ -336,7 +369,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -350,7 +384,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -361,13 +396,16 @@ "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, @@ -388,7 +426,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -402,7 +441,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -413,13 +453,16 @@ "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, @@ -439,7 +482,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -453,7 +497,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -464,13 +509,16 @@ "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, @@ -487,7 +535,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/jaqs.json b/src/lib/runners/jaqs.json index 20623543d..6de60fe2a 100644 --- a/src/lib/runners/jaqs.json +++ b/src/lib/runners/jaqs.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -35,7 +36,8 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/jarm.json b/src/lib/runners/jarm.json index b925d8a33..a5025a517 100644 --- a/src/lib/runners/jarm.json +++ b/src/lib/runners/jarm.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -34,11 +36,14 @@ "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", diff --git a/src/lib/runners/jbam.json b/src/lib/runners/jbam.json index d721d1b10..d320bc876 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,13 +40,16 @@ "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, @@ -64,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -78,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -89,13 +96,16 @@ "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, @@ -115,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -129,7 +140,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -140,13 +152,16 @@ "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, @@ -167,7 +182,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -181,7 +197,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -192,13 +209,16 @@ "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, @@ -215,7 +235,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/jbqw.json b/src/lib/runners/jbqw.json index 98f6cac5e..d720603c4 100644 --- a/src/lib/runners/jbqw.json +++ b/src/lib/runners/jbqw.json @@ -15,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +32,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +48,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +61,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -69,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": { @@ -88,7 +95,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -100,7 +108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -112,7 +121,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -123,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", @@ -147,23 +161,28 @@ "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", diff --git a/src/lib/runners/jehv.json b/src/lib/runners/jehv.json index d6aac3073..ef561e891 100644 --- a/src/lib/runners/jehv.json +++ b/src/lib/runners/jehv.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -36,7 +37,8 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", @@ -53,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 20 + "shorthandNumber": 20, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/jguj.json b/src/lib/runners/jguj.json index 417eb929d..e05596560 100644 --- a/src/lib/runners/jguj.json +++ b/src/lib/runners/jguj.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -79,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", @@ -100,18 +108,23 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/jiqb.json b/src/lib/runners/jiqb.json index 7d7a647ea..4efa26a60 100644 --- a/src/lib/runners/jiqb.json +++ b/src/lib/runners/jiqb.json @@ -16,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30,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", @@ -48,11 +51,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 3, "containerState": "ready", @@ -69,7 +74,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/jiua.json b/src/lib/runners/jiua.json index cc44f97f7..675706b19 100644 --- a/src/lib/runners/jiua.json +++ b/src/lib/runners/jiua.json @@ -15,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +56,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -69,7 +73,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -83,7 +88,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -97,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", @@ -118,22 +127,28 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/jjet.json b/src/lib/runners/jjet.json index be82a145b..494530f9b 100644 --- a/src/lib/runners/jjet.json +++ b/src/lib/runners/jjet.json @@ -17,7 +17,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +32,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -57,7 +59,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -71,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", @@ -89,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", @@ -107,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": { @@ -126,7 +135,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -142,7 +152,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -155,11 +166,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -173,7 +186,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -185,7 +199,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -200,7 +215,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -214,7 +230,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -233,7 +250,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -247,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", @@ -264,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", @@ -282,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": { @@ -313,7 +342,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -329,7 +359,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -342,11 +373,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -360,7 +393,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -372,7 +406,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -387,7 +422,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -401,7 +437,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -420,7 +457,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -434,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", @@ -451,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", @@ -469,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", @@ -507,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", @@ -527,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", @@ -545,11 +601,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 3, diff --git a/src/lib/runners/jjjh.json b/src/lib/runners/jjjh.json index 21a7e391d..22441a65c 100644 --- a/src/lib/runners/jjjh.json +++ b/src/lib/runners/jjjh.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -34,11 +36,14 @@ "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", @@ -55,7 +60,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/jmmp.json b/src/lib/runners/jmmp.json index df54cd140..638d8a37e 100644 --- a/src/lib/runners/jmmp.json +++ b/src/lib/runners/jmmp.json @@ -15,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,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", @@ -59,11 +64,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/joaq.json b/src/lib/runners/joaq.json index 45fb9328e..c86e1847e 100644 --- a/src/lib/runners/joaq.json +++ b/src/lib/runners/joaq.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/jsvg.json b/src/lib/runners/jsvg.json index bdf1ab809..bfcd29937 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,21 +179,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": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -199,7 +220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -211,7 +233,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -225,7 +248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -238,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": { @@ -260,7 +288,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -272,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -284,7 +314,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -300,7 +331,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -314,7 +346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -328,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", @@ -349,21 +385,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -384,7 +426,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -396,7 +439,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -410,7 +454,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -423,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": { @@ -445,7 +494,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -457,7 +507,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -469,7 +520,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -485,7 +537,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -499,7 +552,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -513,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", @@ -534,21 +591,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -570,7 +633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -582,7 +646,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -596,7 +661,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -609,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": { @@ -631,7 +701,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -643,7 +714,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -655,7 +727,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -671,7 +744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -685,7 +759,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -700,7 +775,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -712,7 +788,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -726,7 +803,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -739,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", @@ -768,21 +852,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -803,7 +893,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -815,7 +906,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -829,7 +921,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -842,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": { @@ -864,7 +961,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -876,7 +974,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -888,7 +987,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -904,7 +1004,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -918,7 +1019,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -933,7 +1035,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -945,7 +1048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -959,7 +1063,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -972,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", @@ -1001,21 +1112,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -1033,7 +1150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1045,7 +1163,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1061,7 +1180,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1075,7 +1195,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1090,7 +1211,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1102,7 +1224,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1116,7 +1239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1129,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", @@ -1158,15 +1288,19 @@ 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, diff --git a/src/lib/runners/jtxf.json b/src/lib/runners/jtxf.json index c8cb3cdc7..2056c1164 100644 --- a/src/lib/runners/jtxf.json +++ b/src/lib/runners/jtxf.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "binaryFirst" + "shorthandNumberAfterConvert": "binaryFirst", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "binarySecond" + "shorthandNumberAfterConvert": "binarySecond", + "maxNestedFunctionDepth": 0 }, "func": { "name": "mult", @@ -43,15 +45,18 @@ 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 }, "numLeafNodes": 5, "containerState": "ready", diff --git a/src/lib/runners/jwah.json b/src/lib/runners/jwah.json index 46a4053e2..064c67e54 100644 --- a/src/lib/runners/jwah.json +++ b/src/lib/runners/jwah.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/jwce.json b/src/lib/runners/jwce.json index 0edafeea5..0fc50ec47 100644 --- a/src/lib/runners/jwce.json +++ b/src/lib/runners/jwce.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32,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", @@ -50,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", @@ -68,11 +73,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 4, "containerState": "ready", diff --git a/src/lib/runners/jwdn.json b/src/lib/runners/jwdn.json index 4f469f129..5cb24e961 100644 --- a/src/lib/runners/jwdn.json +++ b/src/lib/runners/jwdn.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -65,19 +69,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 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 3, "containerState": "stepped", diff --git a/src/lib/runners/jwue.json b/src/lib/runners/jwue.json index feab10a51..7726967fe 100644 --- a/src/lib/runners/jwue.json +++ b/src/lib/runners/jwue.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/jwzh.json b/src/lib/runners/jwzh.json index 5fb01dd8e..2191db6b6 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/jxvy.json b/src/lib/runners/jxvy.json index 6d9644425..e6500a89c 100644 --- a/src/lib/runners/jxvy.json +++ b/src/lib/runners/jxvy.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberPlusOrMinusOne": "plus" + "shorthandNumberPlusOrMinusOne": "plus", + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "ready", diff --git a/src/lib/runners/jyqf.json b/src/lib/runners/jyqf.json index d53e2ba4b..d865fa92c 100644 --- a/src/lib/runners/jyqf.json +++ b/src/lib/runners/jyqf.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/kbnn.json b/src/lib/runners/kbnn.json index b89d3e385..39940d4da 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,13 +40,16 @@ "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, @@ -61,7 +66,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/kdgv.json b/src/lib/runners/kdgv.json index 25bfb2098..7382e7990 100644 --- a/src/lib/runners/kdgv.json +++ b/src/lib/runners/kdgv.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32,7 +33,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -61,7 +63,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -75,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", @@ -93,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", @@ -111,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", @@ -129,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", @@ -146,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", @@ -164,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", @@ -184,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", @@ -202,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", @@ -220,11 +240,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 12, "containerState": "ready", diff --git a/src/lib/runners/keck.json b/src/lib/runners/keck.json index c48c5f126..fe5052baf 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/kiiq.json b/src/lib/runners/kiiq.json index 35e9a1326..8313d6fe8 100644 --- a/src/lib/runners/kiiq.json +++ b/src/lib/runners/kiiq.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/kizi.json b/src/lib/runners/kizi.json index 5275f44c2..8bcb0b7d9 100644 --- a/src/lib/runners/kizi.json +++ b/src/lib/runners/kizi.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/kjba.json b/src/lib/runners/kjba.json index 533fb085f..afac8601d 100644 --- a/src/lib/runners/kjba.json +++ b/src/lib/runners/kjba.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -70,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,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", @@ -120,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", @@ -138,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": { @@ -163,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -178,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -194,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -207,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", @@ -224,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": { @@ -244,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -260,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -273,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", @@ -290,27 +317,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "ready", diff --git a/src/lib/runners/kmyl.json b/src/lib/runners/kmyl.json index 6634b46e8..5616ad733 100644 --- a/src/lib/runners/kmyl.json +++ b/src/lib/runners/kmyl.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,9 +45,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 3, "containerState": "ready", @@ -62,7 +66,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/knhw.json b/src/lib/runners/knhw.json index ba144e38a..613dd965b 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/kosw.json b/src/lib/runners/kosw.json index 63adb54e0..abebe4949 100644 --- a/src/lib/runners/kosw.json +++ b/src/lib/runners/kosw.json @@ -16,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -30,7 +31,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -53,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -67,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", @@ -85,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", @@ -102,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", @@ -120,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", @@ -140,11 +152,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 8, "containerState": "ready", diff --git a/src/lib/runners/kvso.json b/src/lib/runners/kvso.json index d2739e30a..35a05becf 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,13 +40,16 @@ "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, @@ -64,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -78,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -89,13 +96,16 @@ "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, @@ -116,7 +126,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -130,7 +141,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -141,13 +153,16 @@ "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, @@ -164,7 +179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/kwyy.json b/src/lib/runners/kwyy.json index 1bc5ffe6e..7799f8154 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,21 +179,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, diff --git a/src/lib/runners/kzkg.json b/src/lib/runners/kzkg.json index bcb99adf2..e7c299e9f 100644 --- a/src/lib/runners/kzkg.json +++ b/src/lib/runners/kzkg.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/laea.json b/src/lib/runners/laea.json index a93ee1ecf..5616d68bf 100644 --- a/src/lib/runners/laea.json +++ b/src/lib/runners/laea.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "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,19 +70,24 @@ "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", diff --git a/src/lib/runners/ldqk.json b/src/lib/runners/ldqk.json index 7e31c2885..78d22bf22 100644 --- a/src/lib/runners/ldqk.json +++ b/src/lib/runners/ldqk.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -52,13 +56,16 @@ "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", diff --git a/src/lib/runners/lgiv.json b/src/lib/runners/lgiv.json index 715d0cbcf..ad3288a84 100644 --- a/src/lib/runners/lgiv.json +++ b/src/lib/runners/lgiv.json @@ -20,7 +20,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -34,10 +35,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -51,10 +54,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 3, "containerState": "ready", @@ -80,7 +85,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -94,10 +100,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "state": "active", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -111,10 +119,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 3, "containerState": "stepped", @@ -137,7 +147,8 @@ 1 ], "funcPriorityAgg": [], - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -151,10 +162,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", @@ -177,7 +190,8 @@ 1 ], "funcPriorityAgg": [], - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -191,10 +205,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "active", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -212,7 +228,8 @@ "emphasizePriority": false, "argPriorityAgg": [], "funcPriorityAgg": [], - "shorthandNumber": 24 + "shorthandNumber": 24, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/lipt.json b/src/lib/runners/lipt.json index f5b6d43ef..d8324ec06 100644 --- a/src/lib/runners/lipt.json +++ b/src/lib/runners/lipt.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -38,7 +40,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -49,9 +52,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -65,7 +70,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -81,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -95,7 +102,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -106,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", @@ -125,21 +136,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 }, "state": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1, @@ -157,7 +174,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -169,7 +187,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -184,7 +203,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -195,9 +215,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -211,7 +233,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -227,7 +250,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -241,7 +265,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -252,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", @@ -271,21 +299,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 }, "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, @@ -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,23 +476,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": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -464,7 +517,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -476,7 +530,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -491,7 +546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -502,9 +558,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -518,7 +576,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -534,7 +593,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -548,7 +608,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -559,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": { @@ -579,7 +643,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -590,23 +655,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": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -624,7 +696,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -636,7 +709,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -652,7 +726,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -666,7 +741,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -677,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": { @@ -697,7 +776,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -708,17 +788,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -736,7 +821,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -748,7 +834,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -764,7 +851,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -778,7 +866,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -789,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": { @@ -809,7 +901,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -820,17 +913,22 @@ "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 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, @@ -848,7 +946,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -860,7 +959,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -876,7 +976,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -890,7 +991,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -901,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": { @@ -921,7 +1026,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -932,17 +1038,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -961,7 +1072,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -973,7 +1085,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -989,7 +1102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1003,7 +1117,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1014,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": { @@ -1034,7 +1152,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1048,7 +1167,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1062,7 +1182,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1073,23 +1194,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": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -1107,7 +1235,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1119,7 +1248,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1135,7 +1265,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1149,7 +1280,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1160,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": { @@ -1180,7 +1315,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1194,7 +1330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1208,7 +1345,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1219,23 +1357,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": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -1253,7 +1398,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1265,7 +1411,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1279,7 +1426,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1293,7 +1441,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1304,17 +1453,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -1332,7 +1486,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1344,7 +1499,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1358,7 +1514,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1372,7 +1529,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1383,17 +1541,22 @@ "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 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, @@ -1411,7 +1574,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1423,7 +1587,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1437,7 +1602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1451,7 +1617,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1462,17 +1629,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, @@ -1491,7 +1663,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1503,7 +1676,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1517,7 +1691,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1531,7 +1706,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1542,17 +1718,22 @@ "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -1570,7 +1751,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1582,7 +1764,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1593,11 +1776,14 @@ "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, diff --git a/src/lib/runners/lizi.json b/src/lib/runners/lizi.json index cc201b19d..52d5d4964 100644 --- a/src/lib/runners/lizi.json +++ b/src/lib/runners/lizi.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28,11 +29,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/loai.json b/src/lib/runners/loai.json index b419a03c8..c2ddc6424 100644 --- a/src/lib/runners/loai.json +++ b/src/lib/runners/loai.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/ltpe.json b/src/lib/runners/ltpe.json index 6b0c1f4a6..e2dd22541 100644 --- a/src/lib/runners/ltpe.json +++ b/src/lib/runners/ltpe.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", @@ -98,7 +107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +122,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -127,7 +138,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -139,7 +151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -150,19 +163,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 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 3, "containerState": "stepped", diff --git a/src/lib/runners/lwoq.json b/src/lib/runners/lwoq.json index 25ffe7d30..d5ed12530 100644 --- a/src/lib/runners/lwoq.json +++ b/src/lib/runners/lwoq.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -79,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", @@ -100,17 +108,22 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/lxgj.json b/src/lib/runners/lxgj.json index cc5da6fff..311068ad0 100644 --- a/src/lib/runners/lxgj.json +++ b/src/lib/runners/lxgj.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -58,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": { @@ -77,7 +82,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -92,7 +98,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -104,7 +111,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -115,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": { @@ -134,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -146,7 +158,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "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": "b", @@ -169,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", @@ -191,29 +209,36 @@ 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", diff --git a/src/lib/runners/lxhc.json b/src/lib/runners/lxhc.json index 55f2cbbba..8bc7e2209 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/lxrk.json b/src/lib/runners/lxrk.json index 2d3ece9ea..6390f5059 100644 --- a/src/lib/runners/lxrk.json +++ b/src/lib/runners/lxrk.json @@ -26,7 +26,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -40,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", @@ -58,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", @@ -76,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", @@ -94,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", @@ -112,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", @@ -130,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", @@ -148,11 +161,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 8, "containerState": "ready", @@ -169,7 +184,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/mbje.json b/src/lib/runners/mbje.json index a49d11a28..1e250dd68 100644 --- a/src/lib/runners/mbje.json +++ b/src/lib/runners/mbje.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/mcug.json b/src/lib/runners/mcug.json index e776e6f2f..4a7236d4b 100644 --- a/src/lib/runners/mcug.json +++ b/src/lib/runners/mcug.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28,11 +29,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", @@ -49,7 +52,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/mepb.json b/src/lib/runners/mepb.json index fdea0042d..b94352a0b 100644 --- a/src/lib/runners/mepb.json +++ b/src/lib/runners/mepb.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/mhgm.json b/src/lib/runners/mhgm.json index 545300c12..2dd50b9cb 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/mhyv.json b/src/lib/runners/mhyv.json index 06b99f94e..fc7159953 100644 --- a/src/lib/runners/mhyv.json +++ b/src/lib/runners/mhyv.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +26,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -39,7 +41,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -50,15 +53,19 @@ "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", diff --git a/src/lib/runners/mibj.json b/src/lib/runners/mibj.json index 001a266c9..7625cde48 100644 --- a/src/lib/runners/mibj.json +++ b/src/lib/runners/mibj.json @@ -17,7 +17,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +32,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -57,7 +59,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -71,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", @@ -89,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", @@ -107,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", @@ -124,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", @@ -142,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", @@ -162,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", @@ -180,11 +196,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 10, "containerState": "ready", diff --git a/src/lib/runners/mifg.json b/src/lib/runners/mifg.json index bcaff23f7..9fbbc76b9 100644 --- a/src/lib/runners/mifg.json +++ b/src/lib/runners/mifg.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", @@ -75,7 +82,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/mlnt.json b/src/lib/runners/mlnt.json index 5d7a037d8..ed59a19de 100644 --- a/src/lib/runners/mlnt.json +++ b/src/lib/runners/mlnt.json @@ -15,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +32,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 3, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +48,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +61,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -70,7 +74,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -82,7 +87,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -126,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": { @@ -148,7 +159,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -162,31 +174,40 @@ 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", diff --git a/src/lib/runners/mqvu.json b/src/lib/runners/mqvu.json index d25be8133..b2bc10f07 100644 --- a/src/lib/runners/mqvu.json +++ b/src/lib/runners/mqvu.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "ready", diff --git a/src/lib/runners/msiw.json b/src/lib/runners/msiw.json index ea039c55c..eee0e885b 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,13 +40,16 @@ "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, @@ -64,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -78,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -89,13 +96,16 @@ "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, diff --git a/src/lib/runners/msrk.json b/src/lib/runners/msrk.json index 42646af50..8d78ea4ba 100644 --- a/src/lib/runners/msrk.json +++ b/src/lib/runners/msrk.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32,7 +33,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -61,7 +63,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -75,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", @@ -93,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", @@ -111,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", @@ -129,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", @@ -146,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", @@ -164,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", @@ -184,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", @@ -202,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", @@ -220,11 +240,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 12, "containerState": "stepped", diff --git a/src/lib/runners/mutg.json b/src/lib/runners/mutg.json index e8acd2367..85d777012 100644 --- a/src/lib/runners/mutg.json +++ b/src/lib/runners/mutg.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "n", @@ -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": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "m", @@ -52,13 +56,16 @@ "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", @@ -74,7 +81,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/myjz.json b/src/lib/runners/myjz.json index 477d238d6..bf1d8c1e9 100644 --- a/src/lib/runners/myjz.json +++ b/src/lib/runners/myjz.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25,7 +26,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -39,7 +41,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -50,15 +53,19 @@ "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", @@ -76,7 +83,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -90,7 +98,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -104,7 +113,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -115,15 +125,19 @@ "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", @@ -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,15 +197,19 @@ "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", @@ -207,7 +228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -221,7 +243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -235,7 +258,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -246,15 +270,19 @@ "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", @@ -272,7 +300,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -283,9 +312,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/mzqc.json b/src/lib/runners/mzqc.json index 20af47873..5d7bbca41 100644 --- a/src/lib/runners/mzqc.json +++ b/src/lib/runners/mzqc.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/mzys.json b/src/lib/runners/mzys.json index f3f50f335..989333f82 100644 --- a/src/lib/runners/mzys.json +++ b/src/lib/runners/mzys.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/ngxc.json b/src/lib/runners/ngxc.json index 9b646801a..bea9039d1 100644 --- a/src/lib/runners/ngxc.json +++ b/src/lib/runners/ngxc.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32,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", @@ -49,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", @@ -67,11 +72,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/nhqo.json b/src/lib/runners/nhqo.json index 5937b8245..929e5f8e0 100644 --- a/src/lib/runners/nhqo.json +++ b/src/lib/runners/nhqo.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "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,22 +179,28 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/niwv.json b/src/lib/runners/niwv.json index 25b9ed181..8f4ade2bd 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,21 +179,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": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1, diff --git a/src/lib/runners/nlbn.json b/src/lib/runners/nlbn.json index b1c49480f..b0eff7f96 100644 --- a/src/lib/runners/nlbn.json +++ b/src/lib/runners/nlbn.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -55,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", @@ -72,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": { @@ -94,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -106,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -134,7 +146,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -148,7 +161,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -162,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", @@ -183,21 +200,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 7, "containerState": "ready", @@ -217,7 +240,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -229,7 +253,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -245,7 +270,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -258,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", @@ -275,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": { @@ -297,7 +329,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -309,7 +342,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -321,7 +355,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -337,7 +372,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -351,7 +387,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -365,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", @@ -386,21 +426,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": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -421,7 +467,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -433,7 +480,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -449,7 +497,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -462,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", @@ -479,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": { @@ -501,7 +556,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -513,7 +569,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "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": { @@ -541,7 +599,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -555,7 +614,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -569,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", @@ -590,21 +653,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -625,7 +694,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -637,7 +707,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -653,7 +724,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -666,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", @@ -683,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": { @@ -705,7 +783,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -717,7 +796,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -729,7 +809,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -745,7 +826,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -759,7 +841,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -773,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", @@ -794,21 +880,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -830,7 +922,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -842,7 +935,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -858,7 +952,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -871,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", @@ -888,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": { @@ -910,7 +1011,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -922,7 +1024,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -934,7 +1037,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -950,7 +1054,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -964,7 +1069,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -979,7 +1085,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -991,7 +1098,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1007,7 +1115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1020,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", @@ -1037,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", @@ -1066,21 +1183,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -1101,7 +1224,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1113,7 +1237,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1129,7 +1254,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1142,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", @@ -1159,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": { @@ -1181,7 +1313,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1193,7 +1326,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1205,7 +1339,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1221,7 +1356,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1235,7 +1371,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1250,7 +1387,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1262,7 +1400,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1278,7 +1417,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1291,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", @@ -1308,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", @@ -1337,21 +1485,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -1369,7 +1523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1381,7 +1536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1397,7 +1553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1411,7 +1568,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1426,7 +1584,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1438,7 +1597,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1454,7 +1614,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1467,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", @@ -1484,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", @@ -1513,15 +1682,19 @@ 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, @@ -1539,7 +1712,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1551,7 +1725,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1567,7 +1742,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1581,7 +1757,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1596,7 +1773,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1608,7 +1786,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1624,7 +1803,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1637,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", @@ -1654,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", @@ -1683,15 +1871,19 @@ 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": "active", "activePriority": 2, @@ -1709,7 +1901,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1721,7 +1914,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1737,7 +1931,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1751,7 +1946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1766,7 +1962,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1778,7 +1975,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1794,7 +1992,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1807,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", @@ -1824,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", @@ -1853,15 +2060,19 @@ 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": "showFuncUnbound", "activePriority": 2, @@ -1879,7 +2090,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1891,7 +2103,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1907,7 +2120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1921,7 +2135,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1936,7 +2151,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1948,7 +2164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1964,7 +2181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1977,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", @@ -1994,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", @@ -2023,15 +2249,19 @@ 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, @@ -2050,7 +2280,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2062,7 +2293,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2078,7 +2310,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2092,7 +2325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2107,7 +2341,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2119,7 +2354,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2135,7 +2371,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2148,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", @@ -2165,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", @@ -2194,15 +2439,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -2220,7 +2469,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2232,7 +2482,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2248,7 +2499,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2262,7 +2514,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2277,7 +2530,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2289,7 +2543,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2305,7 +2560,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2318,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", @@ -2335,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", @@ -2364,15 +2628,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -2390,7 +2658,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2402,7 +2671,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2418,7 +2688,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2432,7 +2703,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2448,7 +2720,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2461,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", @@ -2478,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", @@ -2501,15 +2780,19 @@ 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, @@ -2527,7 +2810,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2539,7 +2823,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2555,7 +2840,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2569,7 +2855,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2585,7 +2872,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2598,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", @@ -2615,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", @@ -2638,15 +2932,19 @@ 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": "active", "activePriority": 2, @@ -2664,7 +2962,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2676,7 +2975,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2692,7 +2992,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2706,7 +3007,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2722,7 +3024,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2735,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", @@ -2752,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", @@ -2775,15 +3084,19 @@ 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": "showFuncBound", "activePriority": 2, @@ -2801,7 +3114,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2813,7 +3127,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2829,7 +3144,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2843,7 +3159,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2859,7 +3176,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2872,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", @@ -2889,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", @@ -2912,15 +3236,19 @@ 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, @@ -2939,7 +3267,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2951,7 +3280,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2967,7 +3297,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2981,7 +3312,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2997,7 +3329,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3010,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", @@ -3027,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", @@ -3050,15 +3389,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -3076,7 +3419,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3088,7 +3432,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3104,7 +3449,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3118,7 +3464,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3134,7 +3481,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3147,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", @@ -3164,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", @@ -3187,15 +3541,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -3213,7 +3571,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3225,7 +3584,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3243,7 +3603,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3256,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", @@ -3273,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", @@ -3290,15 +3655,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/nlyu.json b/src/lib/runners/nlyu.json index 2c46b26d7..f70b4248d 100644 --- a/src/lib/runners/nlyu.json +++ b/src/lib/runners/nlyu.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/nmbt.json b/src/lib/runners/nmbt.json index 4e10bf55e..d0ae0696b 100644 --- a/src/lib/runners/nmbt.json +++ b/src/lib/runners/nmbt.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -35,7 +36,8 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/nmmz.json b/src/lib/runners/nmmz.json index eeac25595..2ddf15b89 100644 --- a/src/lib/runners/nmmz.json +++ b/src/lib/runners/nmmz.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -52,13 +56,16 @@ "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", @@ -74,7 +81,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/nmrp.json b/src/lib/runners/nmrp.json index 6468baa4a..0acc961ef 100644 --- a/src/lib/runners/nmrp.json +++ b/src/lib/runners/nmrp.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -67,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": { @@ -86,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -110,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -121,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": { @@ -144,7 +158,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -156,7 +171,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -167,27 +183,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": 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", @@ -207,7 +230,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -222,7 +246,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -237,7 +262,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -249,7 +275,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -260,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": { @@ -279,7 +309,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -291,7 +322,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -303,7 +335,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -314,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": { @@ -337,7 +374,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -349,7 +387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -360,27 +399,34 @@ "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", @@ -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,27 +616,34 @@ "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", @@ -596,7 +665,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -611,7 +681,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -626,7 +697,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -638,7 +710,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -649,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": { @@ -668,7 +744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -680,7 +757,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -692,7 +770,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -703,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": { @@ -726,7 +809,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -738,7 +822,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -749,27 +834,34 @@ "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", @@ -790,7 +882,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -805,7 +898,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -820,7 +914,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -832,7 +927,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -843,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": { @@ -863,7 +962,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -874,21 +974,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": 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", @@ -909,7 +1014,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -924,7 +1030,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -939,7 +1046,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -951,7 +1059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -962,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": { @@ -982,7 +1094,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -993,21 +1106,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": 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", @@ -1028,7 +1146,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1043,7 +1162,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1058,7 +1178,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1070,7 +1191,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1081,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": { @@ -1101,7 +1226,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -1112,21 +1238,26 @@ "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", @@ -1148,7 +1279,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1163,7 +1295,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1178,7 +1311,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1190,7 +1324,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1201,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": { @@ -1221,7 +1359,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1233,7 +1372,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1245,7 +1385,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1256,25 +1397,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": "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", @@ -1295,7 +1443,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1310,7 +1459,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1325,7 +1475,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1337,7 +1488,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1348,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": { @@ -1368,7 +1523,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1380,7 +1536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1392,7 +1549,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1403,25 +1561,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": "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", @@ -1442,7 +1607,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1457,7 +1623,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1472,7 +1639,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1484,7 +1652,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1495,19 +1664,24 @@ "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", @@ -1528,7 +1702,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1543,7 +1718,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1558,7 +1734,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1570,7 +1747,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1581,19 +1759,24 @@ "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", @@ -1614,7 +1797,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1629,7 +1813,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1644,7 +1829,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1656,7 +1842,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1667,19 +1854,24 @@ "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", @@ -1701,7 +1893,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1716,7 +1909,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1731,7 +1925,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1743,7 +1938,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -1755,19 +1951,24 @@ "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", @@ -1788,7 +1989,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1803,7 +2005,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1818,7 +2021,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1830,7 +2034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -1842,19 +2047,24 @@ "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", @@ -1875,7 +2085,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1889,7 +2100,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -1901,13 +2113,16 @@ "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", @@ -1928,7 +2143,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1942,7 +2158,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -1954,13 +2171,16 @@ "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, @@ -1981,7 +2201,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1995,7 +2216,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -2007,13 +2229,16 @@ "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, @@ -2035,7 +2260,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2049,7 +2275,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "blankNumber", @@ -2061,13 +2288,16 @@ "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, @@ -2085,7 +2315,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/nngz.json b/src/lib/runners/nngz.json index a61cf1ec6..08cef9e25 100644 --- a/src/lib/runners/nngz.json +++ b/src/lib/runners/nngz.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -54,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", @@ -71,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", @@ -88,15 +95,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 }, "numLeafNodes": 4, "containerState": "ready", diff --git a/src/lib/runners/nntn.json b/src/lib/runners/nntn.json index e39325042..a583273bd 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/nplf.json b/src/lib/runners/nplf.json index a6dab03e9..7259b9ab3 100644 --- a/src/lib/runners/nplf.json +++ b/src/lib/runners/nplf.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/nuco.json b/src/lib/runners/nuco.json index d7c4c87dc..8fe064d32 100644 --- a/src/lib/runners/nuco.json +++ b/src/lib/runners/nuco.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "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,21 +179,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/nvdn.json b/src/lib/runners/nvdn.json index d6ea9893a..91b83a0c0 100644 --- a/src/lib/runners/nvdn.json +++ b/src/lib/runners/nvdn.json @@ -15,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 2, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31,7 +32,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 3, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -46,7 +48,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -58,7 +61,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -70,7 +74,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -82,7 +87,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -96,7 +102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -125,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", @@ -143,31 +153,40 @@ 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", diff --git a/src/lib/runners/nvqu.json b/src/lib/runners/nvqu.json index c36ec75fc..718100f33 100644 --- a/src/lib/runners/nvqu.json +++ b/src/lib/runners/nvqu.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -79,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", @@ -100,18 +108,23 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/oclg.json b/src/lib/runners/oclg.json index 7ace1446e..06f60fd5f 100644 --- a/src/lib/runners/oclg.json +++ b/src/lib/runners/oclg.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/olyw.json b/src/lib/runners/olyw.json index 76edefc3b..d768ec60b 100644 --- a/src/lib/runners/olyw.json +++ b/src/lib/runners/olyw.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -79,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", @@ -100,17 +108,22 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/omwd.json b/src/lib/runners/omwd.json index 4fcfa4f74..9e1965321 100644 --- a/src/lib/runners/omwd.json +++ b/src/lib/runners/omwd.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -68,7 +72,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -82,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -96,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", @@ -117,21 +126,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/oork.json b/src/lib/runners/oork.json index 87785493b..e37290732 100644 --- a/src/lib/runners/oork.json +++ b/src/lib/runners/oork.json @@ -15,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,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", @@ -59,11 +64,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", diff --git a/src/lib/runners/ooya.json b/src/lib/runners/ooya.json index 7ace1446e..06f60fd5f 100644 --- a/src/lib/runners/ooya.json +++ b/src/lib/runners/ooya.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/oqpi.json b/src/lib/runners/oqpi.json index e08821d28..60fcfd80f 100644 --- a/src/lib/runners/oqpi.json +++ b/src/lib/runners/oqpi.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -57,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", @@ -74,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", @@ -91,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": { @@ -113,7 +124,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -125,7 +137,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -137,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -153,7 +167,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -167,7 +182,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -181,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", @@ -202,21 +221,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 8, "containerState": "ready", @@ -236,7 +261,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -248,7 +274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -266,7 +293,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -279,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", @@ -296,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", @@ -313,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": { @@ -335,7 +371,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -347,7 +384,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -359,7 +397,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -375,7 +414,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -389,7 +429,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -403,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", @@ -424,21 +468,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -459,7 +509,8 @@ ], "funcPriorityAgg": [], "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": { "arg": { @@ -489,7 +541,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -502,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", @@ -519,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", @@ -536,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": { @@ -558,7 +619,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -570,7 +632,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -582,7 +645,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -598,7 +662,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -612,7 +677,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -626,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", @@ -647,21 +716,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -683,7 +758,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -695,7 +771,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -713,7 +790,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -726,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", @@ -743,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", @@ -760,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": { @@ -782,7 +868,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -794,7 +881,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -806,7 +894,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -822,7 +911,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -836,7 +926,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -851,7 +942,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -863,7 +955,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -881,7 +974,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -894,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", @@ -911,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", @@ -928,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", @@ -957,21 +1061,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -992,7 +1102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1004,7 +1115,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1022,7 +1134,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1035,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", @@ -1052,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", @@ -1069,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": { @@ -1091,7 +1212,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1103,7 +1225,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1115,7 +1238,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1131,7 +1255,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1145,7 +1270,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1160,7 +1286,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1172,7 +1299,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1190,7 +1318,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1203,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", @@ -1220,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", @@ -1237,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", @@ -1266,21 +1405,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -1298,7 +1443,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1310,7 +1456,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1326,7 +1473,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1340,7 +1488,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1355,7 +1504,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1367,7 +1517,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1385,7 +1536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1398,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", @@ -1415,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", @@ -1432,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", @@ -1461,15 +1623,19 @@ 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, @@ -1487,7 +1653,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1499,7 +1666,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1515,7 +1683,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1529,7 +1698,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1544,7 +1714,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1556,7 +1727,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1574,7 +1746,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1587,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", @@ -1604,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", @@ -1621,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", @@ -1650,15 +1833,19 @@ 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": "showFuncUnbound", "activePriority": 2, @@ -1676,7 +1863,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1688,7 +1876,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1704,7 +1893,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1718,7 +1908,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1733,7 +1924,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1745,7 +1937,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1763,7 +1956,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -1776,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", @@ -1793,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", @@ -1810,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", @@ -1839,15 +2043,19 @@ 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, @@ -1866,7 +2074,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1878,7 +2087,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1894,7 +2104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1908,7 +2119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1923,7 +2135,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1935,7 +2148,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1953,7 +2167,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -1966,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", @@ -1983,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", @@ -2000,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", @@ -2029,15 +2254,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -2055,7 +2284,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2067,7 +2297,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2083,7 +2314,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2097,7 +2329,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2112,7 +2345,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2124,7 +2358,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2142,7 +2377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2155,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", @@ -2172,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", @@ -2189,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", @@ -2218,15 +2464,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -2244,7 +2494,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2256,7 +2507,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2272,7 +2524,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2286,7 +2539,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2304,7 +2558,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2317,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", @@ -2334,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", @@ -2351,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", @@ -2374,15 +2637,19 @@ 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, @@ -2400,7 +2667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2412,7 +2680,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2428,7 +2697,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2442,7 +2712,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2460,7 +2731,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2473,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", @@ -2490,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", @@ -2507,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", @@ -2530,15 +2810,19 @@ 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": "showFuncBound", "activePriority": 2, @@ -2556,7 +2840,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2568,7 +2853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2584,7 +2870,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2598,7 +2885,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2616,7 +2904,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2629,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", @@ -2646,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", @@ -2663,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", @@ -2686,15 +2983,19 @@ 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, @@ -2713,7 +3014,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2725,7 +3027,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2741,7 +3044,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2755,7 +3059,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2773,7 +3078,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2786,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", @@ -2803,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", @@ -2820,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", @@ -2843,15 +3157,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -2869,7 +3187,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2881,7 +3200,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2897,7 +3217,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2911,7 +3232,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2929,7 +3251,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2942,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", @@ -2959,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", @@ -2976,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", @@ -2999,15 +3330,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -3025,7 +3360,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3037,7 +3373,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3057,7 +3394,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -3070,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", @@ -3087,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", @@ -3104,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", @@ -3121,15 +3465,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/osff.json b/src/lib/runners/osff.json index 5af4346ab..cf43d3565 100644 --- a/src/lib/runners/osff.json +++ b/src/lib/runners/osff.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -65,19 +69,24 @@ "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", diff --git a/src/lib/runners/osqo.json b/src/lib/runners/osqo.json index 021ec60c7..9d71c8e80 100644 --- a/src/lib/runners/osqo.json +++ b/src/lib/runners/osqo.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/otbe.json b/src/lib/runners/otbe.json index 5275f44c2..8bcb0b7d9 100644 --- a/src/lib/runners/otbe.json +++ b/src/lib/runners/otbe.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/oukl.json b/src/lib/runners/oukl.json index deb0fc3e3..1b4cbb8b3 100644 --- a/src/lib/runners/oukl.json +++ b/src/lib/runners/oukl.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", diff --git a/src/lib/runners/ovua.json b/src/lib/runners/ovua.json index 0884d6ed7..37957196c 100644 --- a/src/lib/runners/ovua.json +++ b/src/lib/runners/ovua.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -70,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,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", @@ -120,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", @@ -138,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": { @@ -163,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -178,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -194,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -207,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", @@ -224,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": { @@ -244,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -260,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -273,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", @@ -290,27 +317,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "ready", @@ -330,7 +364,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -345,7 +380,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -357,7 +393,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -372,7 +409,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -386,7 +424,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -405,7 +444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -419,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", @@ -436,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", @@ -454,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": { @@ -479,7 +528,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -494,7 +544,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": { "name": "a", @@ -540,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": { @@ -560,7 +617,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -576,7 +634,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -589,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", @@ -606,27 +667,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 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "stepped", @@ -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,27 +1018,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 }, "state": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "stepped", @@ -965,7 +1067,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -980,7 +1083,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -992,7 +1096,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1007,7 +1112,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1021,7 +1127,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1040,7 +1147,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1054,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", @@ -1071,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", @@ -1089,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": { @@ -1114,7 +1231,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1129,7 +1247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1145,7 +1264,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1158,11 +1278,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1176,7 +1298,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1188,7 +1311,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1203,7 +1327,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1217,7 +1342,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1236,7 +1362,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1250,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", @@ -1267,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", @@ -1285,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": { @@ -1315,7 +1453,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1331,7 +1470,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1344,11 +1484,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1362,7 +1504,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1374,7 +1517,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1389,7 +1533,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1403,7 +1548,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1422,7 +1568,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1436,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", @@ -1453,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", @@ -1471,37 +1622,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": "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", @@ -1522,7 +1684,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1537,7 +1700,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1549,7 +1713,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1564,7 +1729,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1578,7 +1744,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1597,7 +1764,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1611,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", @@ -1628,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", @@ -1646,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": { @@ -1671,7 +1848,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1686,7 +1864,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1702,7 +1881,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1715,11 +1895,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1733,7 +1915,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1745,7 +1928,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1760,7 +1944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1774,7 +1959,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1793,7 +1979,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1807,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", @@ -1824,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", @@ -1842,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": { @@ -1872,7 +2070,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1888,7 +2087,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1901,11 +2101,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1919,7 +2121,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1931,7 +2134,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1946,7 +2150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1960,7 +2165,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1979,7 +2185,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1993,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", @@ -2010,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", @@ -2028,37 +2239,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": "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", @@ -2079,7 +2301,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2094,7 +2317,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2110,7 +2334,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2123,11 +2348,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2141,7 +2368,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2153,7 +2381,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2168,7 +2397,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2182,7 +2412,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2201,7 +2432,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2215,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", @@ -2232,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", @@ -2250,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": { @@ -2281,7 +2524,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2297,7 +2541,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2310,11 +2555,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2328,7 +2575,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2340,7 +2588,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2355,7 +2604,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2369,7 +2619,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2388,7 +2639,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2402,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", @@ -2419,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", @@ -2437,31 +2693,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 17, "containerState": "ready", @@ -2482,7 +2747,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2497,7 +2763,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2513,7 +2780,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2526,11 +2794,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2544,7 +2814,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2556,7 +2827,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2571,7 +2843,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2585,7 +2858,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2604,7 +2878,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2618,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", @@ -2635,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", @@ -2653,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": { @@ -2684,7 +2970,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2700,7 +2987,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2713,11 +3001,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2731,7 +3021,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2743,7 +3034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2758,7 +3050,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2772,7 +3065,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2791,7 +3085,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2805,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", @@ -2822,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", @@ -2840,31 +3139,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 17, "containerState": "stepped", @@ -2885,7 +3193,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2900,7 +3209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2916,7 +3226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2929,11 +3240,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2947,7 +3260,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2959,7 +3273,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2974,7 +3289,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2988,7 +3304,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3007,7 +3324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3021,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", @@ -3038,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", @@ -3056,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": { @@ -3087,7 +3416,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3103,7 +3433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3116,11 +3447,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3134,7 +3467,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3146,7 +3480,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3161,7 +3496,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3175,7 +3511,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3194,7 +3531,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3208,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", @@ -3225,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", @@ -3243,31 +3585,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 17, "containerState": "stepped", @@ -3288,7 +3639,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3303,7 +3655,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3319,7 +3672,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3332,11 +3686,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3350,7 +3706,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3362,7 +3719,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3377,7 +3735,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3391,7 +3750,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3410,7 +3770,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3424,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", @@ -3441,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", @@ -3459,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": { @@ -3490,7 +3862,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3506,7 +3879,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3519,11 +3893,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3537,7 +3913,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3549,7 +3926,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3564,7 +3942,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3578,7 +3957,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3597,7 +3977,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3611,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", @@ -3628,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", @@ -3646,31 +4031,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 17, "containerState": "stepped", @@ -3691,7 +4085,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3706,7 +4101,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3722,7 +4118,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3735,11 +4132,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3753,7 +4152,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3765,7 +4165,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3780,7 +4181,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3794,7 +4196,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3813,7 +4216,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3827,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", @@ -3844,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", @@ -3862,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": { @@ -3893,7 +4308,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3909,7 +4325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3922,11 +4339,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3940,7 +4359,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3952,7 +4372,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3967,7 +4388,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3981,7 +4403,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4000,7 +4423,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4014,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", @@ -4031,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", @@ -4049,31 +4477,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 17, "containerState": "stepped", @@ -4095,7 +4532,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4110,7 +4548,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4126,7 +4565,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4139,11 +4579,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4157,7 +4599,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4169,7 +4612,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4184,7 +4628,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4198,7 +4643,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4217,7 +4663,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4231,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", @@ -4248,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", @@ -4266,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": { @@ -4297,7 +4755,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4314,7 +4773,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4330,7 +4790,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4343,11 +4804,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4361,7 +4824,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4373,7 +4837,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4388,7 +4853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4402,7 +4868,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4421,7 +4888,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4435,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", @@ -4452,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", @@ -4470,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": { @@ -4500,7 +4979,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4516,7 +4996,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4529,11 +5010,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4547,7 +5030,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4559,7 +5043,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4574,7 +5059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4588,7 +5074,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4607,7 +5094,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4621,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", @@ -4638,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", @@ -4656,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": { @@ -4690,7 +5190,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4702,7 +5203,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4717,7 +5219,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4731,7 +5234,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4750,7 +5254,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4764,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", @@ -4781,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", @@ -4799,31 +5308,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "numLeafNodes": 31, "containerState": "stepped", @@ -4844,7 +5362,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4859,7 +5378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4875,7 +5395,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4888,11 +5409,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4906,7 +5429,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4918,7 +5442,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4933,7 +5458,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4947,7 +5473,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4966,7 +5493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4980,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", @@ -4997,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", @@ -5015,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": { @@ -5046,7 +5585,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5063,7 +5603,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5079,7 +5620,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5092,11 +5634,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5110,7 +5654,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5122,7 +5667,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5137,7 +5683,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5151,7 +5698,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5170,7 +5718,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5184,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", @@ -5201,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", @@ -5219,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": { @@ -5249,7 +5809,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5265,7 +5826,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5278,11 +5840,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5296,7 +5860,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5308,7 +5873,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5323,7 +5889,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5337,7 +5904,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5356,7 +5924,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5370,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", @@ -5387,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", @@ -5405,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": { @@ -5439,7 +6020,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5451,7 +6033,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5466,7 +6049,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5480,7 +6064,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5499,7 +6084,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5513,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", @@ -5530,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", @@ -5548,31 +6138,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 4 }, "numLeafNodes": 31, "containerState": "stepped", @@ -5593,7 +6192,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5610,7 +6210,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5626,7 +6227,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5639,11 +6241,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5657,7 +6261,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5669,7 +6274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5684,7 +6290,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5698,7 +6305,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5717,7 +6325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5731,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", @@ -5748,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", @@ -5766,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": { @@ -5796,7 +6416,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5812,7 +6433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5825,11 +6447,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5843,7 +6467,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5855,7 +6480,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5870,7 +6496,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5884,7 +6511,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5903,7 +6531,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5917,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", @@ -5934,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", @@ -5952,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": { @@ -5987,7 +6628,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5999,7 +6641,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6014,7 +6657,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6028,7 +6672,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6047,7 +6692,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6061,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", @@ -6078,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", @@ -6096,25 +6746,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 23, "containerState": "ready", @@ -6135,7 +6792,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6152,7 +6810,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6168,7 +6827,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6181,11 +6841,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6199,7 +6861,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6211,7 +6874,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6226,7 +6890,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6240,7 +6905,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6259,7 +6925,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6273,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", @@ -6290,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", @@ -6308,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": { @@ -6338,7 +7016,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6354,7 +7033,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6367,11 +7047,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6385,7 +7067,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6397,7 +7080,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6412,7 +7096,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6426,7 +7111,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6445,7 +7131,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6459,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", @@ -6476,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", @@ -6494,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": { @@ -6529,7 +7228,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6541,7 +7241,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6556,7 +7257,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6570,7 +7272,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6589,7 +7292,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6603,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", @@ -6620,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", @@ -6638,25 +7346,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 23, "containerState": "stepped", @@ -6677,7 +7392,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6694,7 +7410,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6710,7 +7427,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6723,11 +7441,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6741,7 +7461,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6753,7 +7474,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6768,7 +7490,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6782,7 +7505,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6801,7 +7525,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6815,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", @@ -6832,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", @@ -6850,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": { @@ -6880,7 +7616,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6896,7 +7633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6909,11 +7647,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6927,7 +7667,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6939,7 +7680,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6954,7 +7696,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6968,7 +7711,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6987,7 +7731,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7001,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", @@ -7018,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", @@ -7036,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": { @@ -7071,7 +7828,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7083,7 +7841,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7098,7 +7857,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7112,7 +7872,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7131,7 +7892,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7145,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", @@ -7162,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", @@ -7180,25 +7946,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 23, "containerState": "stepped", @@ -7220,7 +7993,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7237,7 +8011,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7253,7 +8028,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7266,11 +8042,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7284,7 +8062,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7296,7 +8075,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7311,7 +8091,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7325,7 +8106,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7344,7 +8126,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7358,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", @@ -7375,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", @@ -7393,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": { @@ -7423,7 +8217,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7439,7 +8234,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7452,11 +8248,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7470,7 +8268,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7482,7 +8281,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7497,7 +8297,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7511,7 +8312,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7530,7 +8332,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7544,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", @@ -7561,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", @@ -7579,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": { @@ -7614,7 +8429,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7626,7 +8442,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7641,7 +8458,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7655,7 +8473,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7674,7 +8493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7688,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": { @@ -7707,7 +8529,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7723,7 +8546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7736,11 +8560,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7754,7 +8580,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7766,7 +8593,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7781,7 +8609,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7795,7 +8624,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7814,7 +8644,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7828,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", @@ -7845,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", @@ -7863,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": { @@ -7894,7 +8736,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7910,7 +8753,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7923,11 +8767,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7941,7 +8787,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7953,7 +8800,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7968,7 +8816,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7982,7 +8831,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8001,7 +8851,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8015,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", @@ -8032,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", @@ -8050,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", @@ -8088,25 +8952,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, "numLeafNodes": 38, "containerState": "stepped", @@ -8127,7 +8998,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8144,7 +9016,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8160,7 +9033,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8173,11 +9047,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8191,7 +9067,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8203,7 +9080,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8218,7 +9096,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8232,7 +9111,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8251,7 +9131,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8265,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", @@ -8282,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", @@ -8300,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": { @@ -8330,7 +9222,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8346,7 +9239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8359,11 +9253,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8377,7 +9273,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8389,7 +9286,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8404,7 +9302,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8418,7 +9317,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8437,7 +9337,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8451,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", @@ -8468,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", @@ -8486,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": { @@ -8521,7 +9434,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8533,7 +9447,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8548,7 +9463,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8562,7 +9478,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8581,7 +9498,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8595,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": { @@ -8614,7 +9534,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8630,7 +9551,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8643,11 +9565,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8661,7 +9585,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8673,7 +9598,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8688,7 +9614,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8702,7 +9629,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8721,7 +9649,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8735,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", @@ -8752,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", @@ -8770,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": { @@ -8801,7 +9741,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8817,7 +9758,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8830,11 +9772,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8848,7 +9792,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8860,7 +9805,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8875,7 +9821,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8889,7 +9836,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8908,7 +9856,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8922,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", @@ -8939,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", @@ -8957,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", @@ -8995,25 +9957,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 5 }, "numLeafNodes": 38, "containerState": "stepped", @@ -9034,7 +10003,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9048,7 +10018,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9063,7 +10034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9077,7 +10049,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9096,7 +10069,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9110,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": { @@ -9129,7 +10105,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9145,7 +10122,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9158,11 +10136,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9176,7 +10156,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9188,7 +10169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9203,7 +10185,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9217,7 +10200,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9236,7 +10220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9250,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", @@ -9267,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", @@ -9285,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": { @@ -9316,7 +10312,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9332,7 +10329,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9345,11 +10343,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9363,7 +10363,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9375,7 +10376,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9390,7 +10392,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9404,7 +10407,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9423,7 +10427,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9437,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", @@ -9454,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", @@ -9472,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", @@ -9510,19 +10528,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "numLeafNodes": 22, "containerState": "ready", @@ -9543,7 +10566,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9557,7 +10581,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9572,7 +10597,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9586,7 +10612,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9605,7 +10632,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9619,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": { @@ -9638,7 +10668,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9654,7 +10685,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9667,11 +10699,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9685,7 +10719,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9697,7 +10732,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9712,7 +10748,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9726,7 +10763,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9745,7 +10783,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9759,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", @@ -9776,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", @@ -9794,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": { @@ -9825,7 +10875,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9841,7 +10892,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9854,11 +10906,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9872,7 +10926,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9884,7 +10939,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9899,7 +10955,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9913,7 +10970,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9932,7 +10990,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9946,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", @@ -9963,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", @@ -9981,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", @@ -10019,19 +11091,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -10052,7 +11129,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10066,7 +11144,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10081,7 +11160,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10095,7 +11175,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10114,7 +11195,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10128,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": { @@ -10147,7 +11231,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10163,7 +11248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10176,11 +11262,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10194,7 +11282,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10206,7 +11295,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10221,7 +11311,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10235,7 +11326,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10254,7 +11346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10268,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", @@ -10285,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", @@ -10303,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": { @@ -10334,7 +11438,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10350,7 +11455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10363,11 +11469,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10381,7 +11489,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10393,7 +11502,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10408,7 +11518,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10422,7 +11533,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10441,7 +11553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10455,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", @@ -10472,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", @@ -10490,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", @@ -10528,19 +11654,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -10562,7 +11693,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10576,7 +11708,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10592,7 +11725,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10606,7 +11740,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10626,7 +11761,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10640,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": { @@ -10659,7 +11797,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10675,7 +11814,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10688,11 +11828,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10706,7 +11848,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10718,7 +11861,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10733,7 +11877,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10747,7 +11892,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10766,7 +11912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10780,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", @@ -10797,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", @@ -10815,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": { @@ -10846,7 +12004,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10862,7 +12021,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10875,11 +12035,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10893,7 +12055,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10905,7 +12068,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10920,7 +12084,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10934,7 +12099,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10953,7 +12119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10967,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", @@ -10984,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", @@ -11002,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", @@ -11040,19 +12220,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": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -11073,7 +12258,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11087,7 +12273,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11103,7 +12290,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11117,7 +12305,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11137,7 +12326,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11151,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": { @@ -11170,7 +12362,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11186,7 +12379,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11199,11 +12393,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11217,7 +12413,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11229,7 +12426,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11244,7 +12442,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11258,7 +12457,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11277,7 +12477,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11291,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", @@ -11308,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", @@ -11326,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": { @@ -11357,7 +12569,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11373,7 +12586,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11386,11 +12600,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11404,7 +12620,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11416,7 +12633,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11431,7 +12649,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11445,7 +12664,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11464,7 +12684,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11478,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", @@ -11495,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", @@ -11513,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", @@ -11551,19 +12785,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": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -11585,7 +12824,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11599,7 +12839,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11619,7 +12860,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11633,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": { @@ -11652,7 +12896,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11668,7 +12913,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11681,11 +12927,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11699,7 +12947,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11711,7 +12960,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11726,7 +12976,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11740,7 +12991,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11759,7 +13011,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11773,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", @@ -11790,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", @@ -11808,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": { @@ -11839,7 +13103,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11855,7 +13120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11868,11 +13134,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11886,7 +13154,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11898,7 +13167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11913,7 +13183,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11927,7 +13198,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11946,7 +13218,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11960,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", @@ -11977,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", @@ -11995,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", @@ -12033,13 +13319,16 @@ ], "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, diff --git a/src/lib/runners/owpg.json b/src/lib/runners/owpg.json index f77139031..83aca6f9a 100644 --- a/src/lib/runners/owpg.json +++ b/src/lib/runners/owpg.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -36,7 +37,8 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/oykb.json b/src/lib/runners/oykb.json index 94b3dc64b..82f95e180 100644 --- a/src/lib/runners/oykb.json +++ b/src/lib/runners/oykb.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -79,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", @@ -100,18 +108,23 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/ozbe.json b/src/lib/runners/ozbe.json index f22668f49..5e9204647 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,13 +40,16 @@ "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, @@ -64,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -78,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -89,13 +96,16 @@ "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, diff --git a/src/lib/runners/ozxi.json b/src/lib/runners/ozxi.json index e13ea081a..fabb4c4dd 100644 --- a/src/lib/runners/ozxi.json +++ b/src/lib/runners/ozxi.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/pbhg.json b/src/lib/runners/pbhg.json index a3c4e8fc9..c307ee2b5 100644 --- a/src/lib/runners/pbhg.json +++ b/src/lib/runners/pbhg.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", diff --git a/src/lib/runners/pbop.json b/src/lib/runners/pbop.json index d43f08b8a..5846e376a 100644 --- a/src/lib/runners/pbop.json +++ b/src/lib/runners/pbop.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -50,7 +53,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -61,9 +65,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -78,7 +84,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -89,9 +96,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -106,7 +115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +128,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -134,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -147,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", @@ -164,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", @@ -187,25 +205,32 @@ 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", diff --git a/src/lib/runners/peiy.json b/src/lib/runners/peiy.json index 5bacbb809..8ea4090b2 100644 --- a/src/lib/runners/peiy.json +++ b/src/lib/runners/peiy.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -70,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,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", @@ -120,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", @@ -138,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": { @@ -163,7 +178,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -178,7 +194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -194,7 +211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -207,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", @@ -224,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": { @@ -244,7 +267,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -260,7 +284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -273,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", @@ -290,27 +317,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "ready", diff --git a/src/lib/runners/pgxb.json b/src/lib/runners/pgxb.json index 5e1a3d377..e991b608c 100644 --- a/src/lib/runners/pgxb.json +++ b/src/lib/runners/pgxb.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -36,7 +37,8 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", @@ -53,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/plbv.json b/src/lib/runners/plbv.json index 2181d8762..bae80e2a5 100644 --- a/src/lib/runners/plbv.json +++ b/src/lib/runners/plbv.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,9 +45,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/plde.json b/src/lib/runners/plde.json index fd657bbcd..92e784912 100644 --- a/src/lib/runners/plde.json +++ b/src/lib/runners/plde.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "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,21 +179,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/pmdm.json b/src/lib/runners/pmdm.json index 41b440e9c..3e3608dcb 100644 --- a/src/lib/runners/pmdm.json +++ b/src/lib/runners/pmdm.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/poha.json b/src/lib/runners/poha.json index 9c80399a7..ffcca9513 100644 --- a/src/lib/runners/poha.json +++ b/src/lib/runners/poha.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -58,7 +61,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -70,7 +74,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -82,7 +87,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -126,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", @@ -147,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": { @@ -176,7 +193,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -191,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -203,7 +222,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -214,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": { @@ -233,7 +256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -245,7 +269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -257,7 +282,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -268,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", @@ -290,29 +320,36 @@ 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", diff --git a/src/lib/runners/psyv.json b/src/lib/runners/psyv.json index bb578f40a..fe115afde 100644 --- a/src/lib/runners/psyv.json +++ b/src/lib/runners/psyv.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -67,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": { @@ -86,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -110,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -121,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", @@ -145,23 +159,28 @@ "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", diff --git a/src/lib/runners/qaoa.json b/src/lib/runners/qaoa.json index 82b7dc22d..f7b10e559 100644 --- a/src/lib/runners/qaoa.json +++ b/src/lib/runners/qaoa.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -70,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,11 +109,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -120,11 +128,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -138,7 +148,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "mult", @@ -152,21 +163,27 @@ 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 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -181,7 +198,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -196,7 +214,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -212,7 +231,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -225,11 +245,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -242,13 +264,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": { @@ -262,7 +287,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -278,7 +304,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -291,11 +318,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -308,27 +337,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 14, "containerState": "ready", diff --git a/src/lib/runners/qcmh.json b/src/lib/runners/qcmh.json index 2510e26c3..2142fd905 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,9 +45,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, diff --git a/src/lib/runners/qfbk.json b/src/lib/runners/qfbk.json index aea9822e1..f86ec9396 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,19 +70,24 @@ "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, diff --git a/src/lib/runners/qgau.json b/src/lib/runners/qgau.json index fee589726..23d07c66b 100644 --- a/src/lib/runners/qgau.json +++ b/src/lib/runners/qgau.json @@ -16,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -30,7 +31,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -53,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -67,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", @@ -85,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", @@ -102,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", @@ -120,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", @@ -140,11 +152,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 8, "containerState": "ready", diff --git a/src/lib/runners/qlcq.json b/src/lib/runners/qlcq.json index 2342afe6e..7e1d83e9c 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,21 +179,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, diff --git a/src/lib/runners/qoms.json b/src/lib/runners/qoms.json index cfe847d42..9cae3655c 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/qrfw.json b/src/lib/runners/qrfw.json index 6885418b0..db9a85da3 100644 --- a/src/lib/runners/qrfw.json +++ b/src/lib/runners/qrfw.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -79,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", @@ -100,17 +108,22 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/qrgc.json b/src/lib/runners/qrgc.json index 1b20dcc1a..fd13f4444 100644 --- a/src/lib/runners/qrgc.json +++ b/src/lib/runners/qrgc.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -68,7 +72,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -82,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -96,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", @@ -117,22 +126,28 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/qsnv.json b/src/lib/runners/qsnv.json index 849e86bc5..11f16680d 100644 --- a/src/lib/runners/qsnv.json +++ b/src/lib/runners/qsnv.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "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,17 +66,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/qsoa.json b/src/lib/runners/qsoa.json index f5a669928..36390f8ad 100644 --- a/src/lib/runners/qsoa.json +++ b/src/lib/runners/qsoa.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/qwdg.json b/src/lib/runners/qwdg.json index fdc90d2df..a435b0238 100644 --- a/src/lib/runners/qwdg.json +++ b/src/lib/runners/qwdg.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "k", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/qxob.json b/src/lib/runners/qxob.json index 0246fae44..2919933bb 100644 --- a/src/lib/runners/qxob.json +++ b/src/lib/runners/qxob.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", @@ -97,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -111,7 +121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -126,7 +137,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -138,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -149,19 +162,24 @@ "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", diff --git a/src/lib/runners/qycx.json b/src/lib/runners/qycx.json index c046d6688..773f16608 100644 --- a/src/lib/runners/qycx.json +++ b/src/lib/runners/qycx.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -36,7 +37,8 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/rakk.json b/src/lib/runners/rakk.json index 983e7ca45..65480dfac 100644 --- a/src/lib/runners/rakk.json +++ b/src/lib/runners/rakk.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -52,13 +56,16 @@ "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", diff --git a/src/lib/runners/rbup.json b/src/lib/runners/rbup.json index 21c1db880..4ff746aa5 100644 --- a/src/lib/runners/rbup.json +++ b/src/lib/runners/rbup.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -37,7 +39,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -50,15 +53,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 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/rdae.json b/src/lib/runners/rdae.json index 54a8844ae..d72c10a47 100644 --- a/src/lib/runners/rdae.json +++ b/src/lib/runners/rdae.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -50,7 +53,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -61,9 +65,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -78,7 +84,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -89,9 +96,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -106,7 +115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +128,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -134,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -147,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", @@ -164,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", @@ -187,26 +205,33 @@ 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", diff --git a/src/lib/runners/rgta.json b/src/lib/runners/rgta.json index d6c62f1a4..ad9f9e32e 100644 --- a/src/lib/runners/rgta.json +++ b/src/lib/runners/rgta.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -26,11 +27,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "done", diff --git a/src/lib/runners/rhcv.json b/src/lib/runners/rhcv.json index 33cb0d941..d3c0ddaff 100644 --- a/src/lib/runners/rhcv.json +++ b/src/lib/runners/rhcv.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -52,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", @@ -69,15 +74,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/rhoa.json b/src/lib/runners/rhoa.json index ab0773fbe..91a6afe8f 100644 --- a/src/lib/runners/rhoa.json +++ b/src/lib/runners/rhoa.json @@ -14,7 +14,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "blankNumberYellow", @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "blankNumberRed", @@ -40,9 +42,11 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/rico.json b/src/lib/runners/rico.json index 072cdc8bf..70772224f 100644 --- a/src/lib/runners/rico.json +++ b/src/lib/runners/rico.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/rivc.json b/src/lib/runners/rivc.json index 1f56d694d..f8956d2a1 100644 --- a/src/lib/runners/rivc.json +++ b/src/lib/runners/rivc.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -52,13 +56,16 @@ "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", @@ -75,7 +82,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -86,9 +94,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/rjfy.json b/src/lib/runners/rjfy.json index 4d4c75e6f..6595f7953 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,9 +45,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "trueCaseActive", "activePriority": 1, diff --git a/src/lib/runners/rjho.json b/src/lib/runners/rjho.json index 0a6230fbc..550e489c3 100644 --- a/src/lib/runners/rjho.json +++ b/src/lib/runners/rjho.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "B", @@ -55,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", @@ -72,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": { @@ -92,7 +100,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -108,7 +117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "B", @@ -121,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", @@ -138,19 +150,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/rjzw.json b/src/lib/runners/rjzw.json index bc5f654fd..7640acd5f 100644 --- a/src/lib/runners/rjzw.json +++ b/src/lib/runners/rjzw.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "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,21 +179,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", @@ -198,7 +219,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -210,7 +232,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -224,7 +247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -237,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": { @@ -259,7 +287,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -271,7 +300,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -283,7 +313,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -299,7 +330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -313,7 +345,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -327,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", @@ -348,21 +384,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": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -383,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -395,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -409,7 +453,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -422,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": { @@ -444,7 +493,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -456,7 +506,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -468,7 +519,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -484,7 +536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -498,7 +551,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -512,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", @@ -533,21 +590,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -568,7 +631,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -580,7 +644,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -594,7 +659,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -607,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": { @@ -629,7 +699,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -641,7 +712,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -653,7 +725,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -669,7 +742,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -683,7 +757,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -697,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", @@ -718,21 +796,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -754,7 +838,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -766,7 +851,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -780,7 +866,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -793,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": { @@ -815,7 +906,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -827,7 +919,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -839,7 +932,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -855,7 +949,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -869,7 +964,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -884,7 +980,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -896,7 +993,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -910,7 +1008,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -923,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", @@ -952,21 +1057,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -987,7 +1098,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -999,7 +1111,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1013,7 +1126,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1026,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": { @@ -1048,7 +1166,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1060,7 +1179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1072,7 +1192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1088,7 +1209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1102,7 +1224,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1117,7 +1240,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1129,7 +1253,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1143,7 +1268,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1156,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", @@ -1185,21 +1317,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -1217,7 +1355,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1229,7 +1368,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1245,7 +1385,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1259,7 +1400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1274,7 +1416,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1286,7 +1429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1300,7 +1444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1313,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", @@ -1342,15 +1493,19 @@ 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, @@ -1368,7 +1523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1380,7 +1536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1396,7 +1553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1410,7 +1568,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1425,7 +1584,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1437,7 +1597,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1451,7 +1612,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1464,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", @@ -1493,15 +1661,19 @@ 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": "active", "activePriority": 2, @@ -1519,7 +1691,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1531,7 +1704,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1547,7 +1721,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1561,7 +1736,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1576,7 +1752,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1588,7 +1765,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1602,7 +1780,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1615,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", @@ -1644,15 +1829,19 @@ 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": "showFuncUnbound", "activePriority": 2, @@ -1670,7 +1859,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1682,7 +1872,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1698,7 +1889,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1712,7 +1904,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1727,7 +1920,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1739,7 +1933,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1753,7 +1948,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1766,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", @@ -1795,15 +1997,19 @@ 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, @@ -1822,7 +2028,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1834,7 +2041,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1850,7 +2058,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1864,7 +2073,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1879,7 +2089,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1891,7 +2102,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1905,7 +2117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1918,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", @@ -1947,15 +2166,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -1973,7 +2196,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1985,7 +2209,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2001,7 +2226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2015,7 +2241,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2030,7 +2257,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2042,7 +2270,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2056,7 +2285,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2069,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", @@ -2098,15 +2334,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -2124,7 +2364,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2136,7 +2377,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2152,7 +2394,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2166,7 +2409,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2180,7 +2424,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2193,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", @@ -2216,15 +2465,19 @@ 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, @@ -2242,7 +2495,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2254,7 +2508,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2270,7 +2525,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2284,7 +2540,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2298,7 +2555,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2311,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", @@ -2334,15 +2596,19 @@ 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": "active", "activePriority": 2, @@ -2360,7 +2626,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2372,7 +2639,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2388,7 +2656,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2402,7 +2671,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2416,7 +2686,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2429,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", @@ -2452,15 +2727,19 @@ 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": "showFuncBound", "activePriority": 2, @@ -2478,7 +2757,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2490,7 +2770,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2506,7 +2787,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2520,7 +2802,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2534,7 +2817,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2547,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", @@ -2570,15 +2858,19 @@ 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, @@ -2597,7 +2889,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2609,7 +2902,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2625,7 +2919,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2639,7 +2934,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2653,7 +2949,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2666,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", @@ -2689,15 +2990,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -2715,7 +3020,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2727,7 +3033,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2743,7 +3050,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2757,7 +3065,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2771,7 +3080,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2784,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", @@ -2807,15 +3121,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -2833,7 +3151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2845,7 +3164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2861,7 +3181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2874,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", @@ -2891,15 +3214,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/rlrs.json b/src/lib/runners/rlrs.json index 95b94db3f..d4bf5184d 100644 --- a/src/lib/runners/rlrs.json +++ b/src/lib/runners/rlrs.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "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,21 +83,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/rnug.json b/src/lib/runners/rnug.json index cbd8f6f4f..0bc7eb63f 100644 --- a/src/lib/runners/rnug.json +++ b/src/lib/runners/rnug.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/roko.json b/src/lib/runners/roko.json index 4be4d6407..29c2037ca 100644 --- a/src/lib/runners/roko.json +++ b/src/lib/runners/roko.json @@ -15,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,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", @@ -59,11 +64,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/rqjo.json b/src/lib/runners/rqjo.json index f9a51ec09..539ae09b0 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,13 +40,16 @@ "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, @@ -64,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -78,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -89,13 +96,16 @@ "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, diff --git a/src/lib/runners/rtza.json b/src/lib/runners/rtza.json index cf683ff6c..fb6194bf6 100644 --- a/src/lib/runners/rtza.json +++ b/src/lib/runners/rtza.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "ready", diff --git a/src/lib/runners/ruou.json b/src/lib/runners/ruou.json index 1ad82215a..7728c0614 100644 --- a/src/lib/runners/ruou.json +++ b/src/lib/runners/ruou.json @@ -14,7 +14,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "blankNumberYellow", @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "name": "blankNumberRed", @@ -40,9 +42,11 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/rviy.json b/src/lib/runners/rviy.json index 447342a35..7203c6501 100644 --- a/src/lib/runners/rviy.json +++ b/src/lib/runners/rviy.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27,11 +28,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/rwuw.json b/src/lib/runners/rwuw.json index 2bc90e991..edf2ebbcb 100644 --- a/src/lib/runners/rwuw.json +++ b/src/lib/runners/rwuw.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -70,7 +74,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -89,7 +94,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -103,11 +109,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -120,11 +128,13 @@ 4 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -138,7 +148,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "mult", @@ -152,21 +163,27 @@ 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 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -181,7 +198,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -196,7 +214,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -212,7 +231,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -225,11 +245,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -242,13 +264,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": { @@ -262,7 +287,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -278,7 +304,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -291,11 +318,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -308,27 +337,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 14, "containerState": "ready", diff --git a/src/lib/runners/rypq.json b/src/lib/runners/rypq.json index 612acf4a5..a9fa63ed8 100644 --- a/src/lib/runners/rypq.json +++ b/src/lib/runners/rypq.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", diff --git a/src/lib/runners/ryqp.json b/src/lib/runners/ryqp.json index 46a39e954..9e0cf7edc 100644 --- a/src/lib/runners/ryqp.json +++ b/src/lib/runners/ryqp.json @@ -12,7 +12,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 5, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/sdta.json b/src/lib/runners/sdta.json index 7397781d9..0f7de1b1f 100644 --- a/src/lib/runners/sdta.json +++ b/src/lib/runners/sdta.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -67,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": { @@ -86,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -110,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -121,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", @@ -144,23 +158,28 @@ ], "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", diff --git a/src/lib/runners/seie.json b/src/lib/runners/seie.json index 5df4d9523..d342e8741 100644 --- a/src/lib/runners/seie.json +++ b/src/lib/runners/seie.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/sgfj.json b/src/lib/runners/sgfj.json index 7103dcfcf..052f95b93 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,13 +40,16 @@ "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, @@ -64,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -78,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -89,13 +96,16 @@ "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, diff --git a/src/lib/runners/sgnp.json b/src/lib/runners/sgnp.json index c77b01f63..ba6589486 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/skoo.json b/src/lib/runners/skoo.json index b2c2989b6..4aa73c900 100644 --- a/src/lib/runners/skoo.json +++ b/src/lib/runners/skoo.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -50,7 +53,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -61,9 +65,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -78,7 +84,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -89,9 +96,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -106,7 +115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +128,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -134,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -147,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", @@ -164,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", @@ -187,26 +205,33 @@ 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", diff --git a/src/lib/runners/smdm.json b/src/lib/runners/smdm.json index f992bae2c..b43fdd274 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,21 +179,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": "needsAlphaConvert", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 1, diff --git a/src/lib/runners/snlf.json b/src/lib/runners/snlf.json index de9345d8d..c6dc319b2 100644 --- a/src/lib/runners/snlf.json +++ b/src/lib/runners/snlf.json @@ -17,7 +17,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +32,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -57,7 +59,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -71,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", @@ -89,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", @@ -107,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": { @@ -126,7 +135,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -142,7 +152,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -155,11 +166,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -173,7 +186,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -185,7 +199,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -200,7 +215,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -214,7 +230,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -233,7 +250,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -247,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", @@ -264,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", @@ -282,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": { @@ -313,7 +342,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -329,7 +359,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -342,11 +373,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -360,7 +393,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -372,7 +406,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -387,7 +422,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -401,7 +437,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -420,7 +457,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -434,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", @@ -451,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", @@ -469,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", @@ -507,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", @@ -527,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", @@ -545,11 +601,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 3, @@ -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,11 +1215,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 3, @@ -1129,7 +1245,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1143,7 +1260,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1169,7 +1287,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1183,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", @@ -1201,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", @@ -1219,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": { @@ -1238,7 +1363,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1254,7 +1380,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1267,11 +1394,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1285,7 +1414,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1297,7 +1427,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1312,7 +1443,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1326,7 +1458,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1345,7 +1478,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1359,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", @@ -1376,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", @@ -1394,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": { @@ -1425,7 +1570,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1441,7 +1587,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1454,11 +1601,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1472,7 +1621,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1484,7 +1634,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1499,7 +1650,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1513,7 +1665,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1532,7 +1685,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1546,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", @@ -1563,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", @@ -1581,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", @@ -1619,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", @@ -1639,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", @@ -1657,11 +1829,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "falseCaseActive", "activePriority": 3, @@ -1694,7 +1868,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1708,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", @@ -1726,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", @@ -1744,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": { @@ -1763,7 +1944,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1779,7 +1961,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1792,11 +1975,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1810,7 +1995,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1822,7 +2008,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1837,7 +2024,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1851,7 +2039,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1870,7 +2059,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1884,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", @@ -1901,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", @@ -1919,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": { @@ -1950,7 +2151,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1966,7 +2168,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1979,11 +2182,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1997,7 +2202,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2009,7 +2215,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2024,7 +2231,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2038,7 +2246,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2057,7 +2266,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2071,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", @@ -2088,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", @@ -2106,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", @@ -2144,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", @@ -2162,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", @@ -2180,11 +2407,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 3, @@ -2217,7 +2446,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2231,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", @@ -2249,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", @@ -2267,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": { @@ -2286,7 +2522,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2302,7 +2539,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2315,11 +2553,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2333,7 +2573,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2345,7 +2586,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2360,7 +2602,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2374,7 +2617,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2393,7 +2637,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2407,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", @@ -2424,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", @@ -2442,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": { @@ -2473,7 +2729,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2489,7 +2746,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2502,11 +2760,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2520,7 +2780,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2532,7 +2793,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2547,7 +2809,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2561,7 +2824,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2580,7 +2844,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2594,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", @@ -2611,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", @@ -2629,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", @@ -2667,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", @@ -2685,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", @@ -2703,11 +2985,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 4, @@ -2740,7 +3024,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2754,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", @@ -2772,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", @@ -2790,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": { @@ -2809,7 +3100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2825,7 +3117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2838,11 +3131,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2856,7 +3151,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2868,7 +3164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2883,7 +3180,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2897,7 +3195,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2916,7 +3215,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2930,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", @@ -2947,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", @@ -2965,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": { @@ -2996,7 +3307,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3012,7 +3324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3025,11 +3338,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3043,7 +3358,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3055,7 +3371,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3070,7 +3387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3084,7 +3402,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3103,7 +3422,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3117,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", @@ -3134,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", @@ -3152,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", @@ -3190,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", @@ -3208,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", @@ -3226,11 +3563,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 4, @@ -3263,7 +3602,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3277,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", @@ -3295,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", @@ -3313,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": { @@ -3332,7 +3678,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3348,7 +3695,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3361,11 +3709,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3379,7 +3729,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3391,7 +3742,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3406,7 +3758,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3420,7 +3773,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3439,7 +3793,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3453,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", @@ -3470,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", @@ -3488,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": { @@ -3519,7 +3885,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3535,7 +3902,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3548,11 +3916,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3566,7 +3936,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3578,7 +3949,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3593,7 +3965,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3607,7 +3980,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3626,7 +4000,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3640,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", @@ -3657,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", @@ -3675,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", @@ -3713,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", @@ -3731,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", @@ -3749,11 +4141,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 4, @@ -3786,7 +4180,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3800,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", @@ -3818,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", @@ -3836,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": { @@ -3855,7 +4256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3871,7 +4273,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3884,11 +4287,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3902,7 +4307,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3914,7 +4320,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3929,7 +4336,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3943,7 +4351,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3962,7 +4371,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3976,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", @@ -3993,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", @@ -4011,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": { @@ -4042,7 +4463,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4058,7 +4480,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4071,11 +4494,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4089,7 +4514,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4101,7 +4527,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4116,7 +4543,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4130,7 +4558,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4149,7 +4578,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4163,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", @@ -4180,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", @@ -4198,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", @@ -4236,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", @@ -4254,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", @@ -4272,11 +4719,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -4310,7 +4759,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4324,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", @@ -4342,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", @@ -4360,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": { @@ -4379,7 +4835,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4395,7 +4852,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4408,11 +4866,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4426,7 +4886,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4438,7 +4899,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4453,7 +4915,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4467,7 +4930,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4486,7 +4950,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4500,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", @@ -4517,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", @@ -4535,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": { @@ -4566,7 +5042,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4583,7 +5060,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4599,7 +5077,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4612,11 +5091,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4630,7 +5111,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4642,7 +5124,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4657,7 +5140,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4671,7 +5155,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4690,7 +5175,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4704,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", @@ -4721,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", @@ -4739,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": { @@ -4769,7 +5266,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4785,7 +5283,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4798,11 +5297,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4816,7 +5317,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4828,7 +5330,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4843,7 +5346,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4857,7 +5361,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4876,7 +5381,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4890,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", @@ -4907,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", @@ -4925,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": { @@ -4959,7 +5477,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4971,7 +5490,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4986,7 +5506,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5000,7 +5521,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5019,7 +5541,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5033,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", @@ -5050,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", @@ -5068,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", @@ -5106,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", @@ -5124,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", @@ -5142,11 +5682,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 4, @@ -5179,7 +5721,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5193,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", @@ -5211,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", @@ -5229,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": { @@ -5248,7 +5797,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5264,7 +5814,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5277,11 +5828,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5295,7 +5848,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5307,7 +5861,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5322,7 +5877,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5336,7 +5892,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5355,7 +5912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5369,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", @@ -5386,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", @@ -5404,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": { @@ -5435,7 +6004,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5452,7 +6022,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5468,7 +6039,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5481,11 +6053,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5499,7 +6073,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5511,7 +6086,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5526,7 +6102,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5540,7 +6117,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5559,7 +6137,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5573,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", @@ -5590,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", @@ -5608,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": { @@ -5638,7 +6228,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5654,7 +6245,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5667,11 +6259,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5685,7 +6279,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5697,7 +6292,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5712,7 +6308,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5726,7 +6323,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5745,7 +6343,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5759,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", @@ -5776,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", @@ -5794,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": { @@ -5828,7 +6439,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5840,7 +6452,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5855,7 +6468,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5869,7 +6483,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5888,7 +6503,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5902,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", @@ -5919,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", @@ -5937,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", @@ -5975,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", @@ -5993,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", @@ -6011,11 +6644,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 4, @@ -6048,7 +6683,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6062,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", @@ -6080,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", @@ -6098,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": { @@ -6119,7 +6761,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6135,7 +6778,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6148,11 +6792,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6166,7 +6812,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6178,7 +6825,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6193,7 +6841,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6207,7 +6856,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6226,7 +6876,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6240,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", @@ -6257,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", @@ -6275,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": { @@ -6305,7 +6967,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6321,7 +6984,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6334,11 +6998,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6352,7 +7018,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6364,7 +7031,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6379,7 +7047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6393,7 +7062,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6412,7 +7082,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6426,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", @@ -6443,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", @@ -6461,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": { @@ -6496,7 +7179,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6508,7 +7192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6523,7 +7208,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6537,7 +7223,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6556,7 +7243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6570,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", @@ -6587,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", @@ -6605,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", @@ -6637,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", @@ -6655,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", @@ -6673,11 +7376,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 4, @@ -6710,7 +7415,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6724,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", @@ -6742,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", @@ -6760,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": { @@ -6781,7 +7493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6797,7 +7510,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6810,11 +7524,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6828,7 +7544,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6840,7 +7557,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6855,7 +7573,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6869,7 +7588,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6888,7 +7608,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6902,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", @@ -6919,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", @@ -6937,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": { @@ -6967,7 +7699,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6983,7 +7716,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6996,11 +7730,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7014,7 +7750,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7026,7 +7763,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7041,7 +7779,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7055,7 +7794,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7074,7 +7814,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7088,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", @@ -7105,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", @@ -7123,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": { @@ -7158,7 +7911,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7170,7 +7924,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7185,7 +7940,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7199,7 +7955,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7218,7 +7975,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7232,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", @@ -7249,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", @@ -7267,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", @@ -7299,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", @@ -7317,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", @@ -7335,11 +8108,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 4, @@ -7372,7 +8147,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7386,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", @@ -7404,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", @@ -7422,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": { @@ -7443,7 +8225,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7459,7 +8242,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7472,11 +8256,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7490,7 +8276,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7502,7 +8289,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7517,7 +8305,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7531,7 +8320,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7550,7 +8340,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7564,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", @@ -7581,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", @@ -7599,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": { @@ -7629,7 +8431,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7645,7 +8448,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7658,11 +8462,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7676,7 +8482,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7688,7 +8495,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7703,7 +8511,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7717,7 +8526,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7736,7 +8546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7750,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", @@ -7767,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", @@ -7785,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": { @@ -7820,7 +8643,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7832,7 +8656,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7847,7 +8672,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7861,7 +8687,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7880,7 +8707,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7894,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", @@ -7911,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", @@ -7929,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", @@ -7961,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", @@ -7979,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", @@ -7997,11 +8840,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -8035,7 +8880,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8049,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", @@ -8067,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", @@ -8085,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": { @@ -8106,7 +8958,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8122,7 +8975,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8135,11 +8989,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8153,7 +9009,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8165,7 +9022,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8180,7 +9038,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8194,7 +9053,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8213,7 +9073,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8227,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", @@ -8244,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", @@ -8262,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": { @@ -8292,7 +9164,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8308,7 +9181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8321,11 +9195,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8339,7 +9215,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8351,7 +9228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8366,7 +9244,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8380,7 +9259,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8399,7 +9279,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8413,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", @@ -8430,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", @@ -8448,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": { @@ -8483,7 +9376,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8495,7 +9389,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8510,7 +9405,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8524,7 +9420,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8543,7 +9440,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8557,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": { @@ -8576,7 +9476,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8592,7 +9493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8605,11 +9507,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8623,7 +9527,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8635,7 +9540,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8650,7 +9556,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8664,7 +9571,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8683,7 +9591,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8697,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", @@ -8714,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", @@ -8732,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": { @@ -8763,7 +9683,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8779,7 +9700,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8792,11 +9714,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8810,7 +9734,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8822,7 +9747,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8837,7 +9763,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8851,7 +9778,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8870,7 +9798,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8884,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", @@ -8901,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", @@ -8919,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", @@ -8957,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", @@ -8989,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", @@ -9007,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", @@ -9025,11 +9978,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 4, @@ -9062,7 +10017,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9076,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", @@ -9094,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", @@ -9112,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": { @@ -9133,7 +10095,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9149,7 +10112,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9162,11 +10126,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9180,7 +10146,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9192,7 +10159,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9207,7 +10175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9221,7 +10190,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9240,7 +10210,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9254,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", @@ -9271,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", @@ -9289,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": { @@ -9319,7 +10301,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9335,7 +10318,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9348,11 +10332,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9366,7 +10352,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9378,7 +10365,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9393,7 +10381,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9407,7 +10396,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9426,7 +10416,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9440,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", @@ -9457,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", @@ -9475,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": { @@ -9510,7 +10513,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9522,7 +10526,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9537,7 +10542,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9551,7 +10557,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9570,7 +10577,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9584,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": { @@ -9603,7 +10613,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9619,7 +10630,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9632,11 +10644,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9650,7 +10664,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9662,7 +10677,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9677,7 +10693,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9691,7 +10708,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9710,7 +10728,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9724,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", @@ -9741,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", @@ -9759,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": { @@ -9790,7 +10820,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9806,7 +10837,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9819,11 +10851,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9837,7 +10871,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9849,7 +10884,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9864,7 +10900,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9878,7 +10915,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9897,7 +10935,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9911,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", @@ -9928,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", @@ -9946,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", @@ -9984,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", @@ -10016,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", @@ -10034,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", @@ -10052,11 +11115,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 4, @@ -10089,7 +11154,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10103,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", @@ -10121,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", @@ -10139,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": { @@ -10157,7 +11229,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10172,7 +11245,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10186,7 +11260,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10205,7 +11280,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10219,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": { @@ -10238,7 +11316,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10254,7 +11333,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10267,11 +11347,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10285,7 +11367,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10297,7 +11380,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10312,7 +11396,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10326,7 +11411,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10345,7 +11431,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10359,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", @@ -10376,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", @@ -10394,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": { @@ -10425,7 +11523,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10441,7 +11540,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10454,11 +11554,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10472,7 +11574,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10484,7 +11587,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10499,7 +11603,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10513,7 +11618,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10532,7 +11638,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10546,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", @@ -10563,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", @@ -10581,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", @@ -10619,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", @@ -10645,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", @@ -10663,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", @@ -10681,11 +11810,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "default", "activePriority": 4, @@ -10718,7 +11849,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10732,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", @@ -10750,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", @@ -10768,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": { @@ -10786,7 +11924,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10801,7 +11940,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10815,7 +11955,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10834,7 +11975,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10848,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": { @@ -10867,7 +12011,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10883,7 +12028,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10896,11 +12042,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10914,7 +12062,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10926,7 +12075,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10941,7 +12091,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10955,7 +12106,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10974,7 +12126,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10988,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", @@ -11005,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", @@ -11023,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": { @@ -11054,7 +12218,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11070,7 +12235,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11083,11 +12249,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11101,7 +12269,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11113,7 +12282,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11128,7 +12298,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11142,7 +12313,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11161,7 +12333,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11175,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", @@ -11192,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", @@ -11210,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", @@ -11248,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", @@ -11274,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", @@ -11292,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", @@ -11310,11 +12505,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 4, @@ -11347,7 +12544,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11361,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", @@ -11379,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", @@ -11397,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": { @@ -11415,7 +12619,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11430,7 +12635,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11444,7 +12650,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11463,7 +12670,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11477,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": { @@ -11496,7 +12706,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11512,7 +12723,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11525,11 +12737,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11543,7 +12757,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11555,7 +12770,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11570,7 +12786,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11584,7 +12801,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11603,7 +12821,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11617,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", @@ -11634,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", @@ -11652,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": { @@ -11683,7 +12913,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11699,7 +12930,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11712,11 +12944,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11730,7 +12964,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11742,7 +12977,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11757,7 +12993,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11771,7 +13008,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11790,7 +13028,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11804,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", @@ -11821,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", @@ -11839,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", @@ -11877,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", @@ -11903,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", @@ -11921,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", @@ -11939,11 +13200,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -11977,7 +13240,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11991,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", @@ -12009,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", @@ -12027,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": { @@ -12045,7 +13315,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12068,7 +13339,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12082,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", @@ -12100,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", @@ -12118,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", @@ -12136,7 +13414,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12162,7 +13441,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12176,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", @@ -12194,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", @@ -12212,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", @@ -12230,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": { @@ -12249,7 +13537,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12265,7 +13554,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12278,11 +13568,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12296,7 +13588,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12308,7 +13601,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12323,7 +13617,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12337,7 +13632,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12356,7 +13652,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12370,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", @@ -12387,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", @@ -12405,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": { @@ -12436,7 +13744,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12452,7 +13761,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12465,11 +13775,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12483,7 +13795,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12495,7 +13808,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12510,7 +13824,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12524,7 +13839,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12543,7 +13859,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12557,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", @@ -12574,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", @@ -12592,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", @@ -12630,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", @@ -12656,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", @@ -12674,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", @@ -12692,11 +14031,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 4, @@ -12729,7 +14070,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12743,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", @@ -12761,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", @@ -12779,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": { @@ -12797,7 +14145,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12820,7 +14169,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12834,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", @@ -12852,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", @@ -12870,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", @@ -12888,7 +14244,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12914,7 +14271,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12928,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", @@ -12946,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", @@ -12964,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", @@ -12982,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": { @@ -13001,7 +14367,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13017,7 +14384,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13030,11 +14398,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13048,7 +14418,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13060,7 +14431,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13075,7 +14447,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13089,7 +14462,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13108,7 +14482,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13122,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", @@ -13139,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", @@ -13157,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": { @@ -13188,7 +14574,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13204,7 +14591,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13217,11 +14605,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13235,7 +14625,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13247,7 +14638,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13262,7 +14654,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13276,7 +14669,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13295,7 +14689,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13309,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", @@ -13326,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", @@ -13344,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", @@ -13382,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", @@ -13408,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", @@ -13426,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", @@ -13444,11 +14861,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 4, @@ -13480,7 +14899,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13494,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", @@ -13512,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", @@ -13530,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", @@ -13548,7 +14974,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13577,7 +15004,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13591,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", @@ -13609,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", @@ -13627,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", @@ -13645,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": { @@ -13664,7 +15100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13680,7 +15117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13693,11 +15131,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13711,7 +15151,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13723,7 +15164,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13738,7 +15180,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13752,7 +15195,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13771,7 +15215,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13785,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", @@ -13802,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", @@ -13820,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": { @@ -13851,7 +15307,8 @@ 10 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13867,7 +15324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13880,11 +15338,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13898,7 +15358,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13910,7 +15371,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13925,7 +15387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13939,7 +15402,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13958,7 +15422,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13972,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", @@ -13989,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", @@ -14007,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", @@ -14045,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", @@ -14065,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", @@ -14083,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", @@ -14101,11 +15586,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 4, @@ -14137,7 +15624,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14151,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", @@ -14169,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", @@ -14187,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", @@ -14205,7 +15699,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14234,7 +15729,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14248,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", @@ -14266,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", @@ -14284,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", @@ -14302,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": { @@ -14321,7 +15825,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14337,7 +15842,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14350,11 +15856,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14368,7 +15876,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14380,7 +15889,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14395,7 +15905,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14409,7 +15920,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14428,7 +15940,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14442,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", @@ -14459,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", @@ -14477,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": { @@ -14508,7 +16032,8 @@ 10 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14524,7 +16049,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14537,11 +16063,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14555,7 +16083,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14567,7 +16096,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14582,7 +16112,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14596,7 +16127,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14615,7 +16147,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14629,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", @@ -14646,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", @@ -14664,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", @@ -14702,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", @@ -14722,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", @@ -14740,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", @@ -14758,11 +16311,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 6, @@ -14792,7 +16347,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14806,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", @@ -14824,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", @@ -14842,7 +16402,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14871,7 +16432,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14885,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", @@ -14903,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", @@ -14921,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", @@ -14939,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": { @@ -14958,7 +16528,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14974,7 +16545,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14987,11 +16559,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15005,7 +16579,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15017,7 +16592,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15032,7 +16608,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15046,7 +16623,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15065,7 +16643,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15079,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", @@ -15096,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", @@ -15114,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": { @@ -15145,7 +16735,8 @@ 9 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15161,7 +16752,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15174,11 +16766,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15192,7 +16786,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15204,7 +16799,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15219,7 +16815,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15233,7 +16830,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15252,7 +16850,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15266,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", @@ -15283,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", @@ -15301,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", @@ -15339,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", @@ -15359,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", @@ -15377,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", @@ -15395,11 +17014,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 6, @@ -15429,7 +17050,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15443,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", @@ -15461,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", @@ -15479,7 +17105,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15508,7 +17135,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15522,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", @@ -15540,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", @@ -15558,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", @@ -15576,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": { @@ -15595,7 +17231,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15611,7 +17248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15624,11 +17262,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15642,7 +17282,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15654,7 +17295,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15669,7 +17311,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15683,7 +17326,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15702,7 +17346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15716,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", @@ -15733,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", @@ -15751,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": { @@ -15782,7 +17438,8 @@ 9 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15798,7 +17455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15811,11 +17469,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15829,7 +17489,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15841,7 +17502,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15856,7 +17518,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15870,7 +17533,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15889,7 +17553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15903,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", @@ -15920,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", @@ -15938,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", @@ -15976,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", @@ -15996,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", @@ -16014,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", @@ -16032,11 +17717,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 5, @@ -16064,7 +17751,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16078,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", @@ -16096,7 +17786,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -16125,7 +17816,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16139,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", @@ -16157,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", @@ -16175,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", @@ -16193,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": { @@ -16212,7 +17912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16228,7 +17929,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -16241,11 +17943,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16259,7 +17963,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16271,7 +17976,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -16286,7 +17992,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16300,7 +18007,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -16319,7 +18027,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16333,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", @@ -16350,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", @@ -16368,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": { @@ -16399,7 +18119,8 @@ 8 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16415,7 +18136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -16428,11 +18150,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16446,7 +18170,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16458,7 +18183,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -16473,7 +18199,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16487,7 +18214,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -16506,7 +18234,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16520,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", @@ -16537,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", @@ -16555,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", @@ -16593,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", @@ -16613,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", @@ -16631,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", @@ -16649,11 +18398,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 5, @@ -16681,7 +18432,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16695,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", @@ -16713,7 +18467,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -16742,7 +18497,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16756,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", @@ -16774,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", @@ -16792,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", @@ -16810,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": { @@ -16829,7 +18593,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16845,7 +18610,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -16858,11 +18624,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16876,7 +18644,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16888,7 +18657,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -16903,7 +18673,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16917,7 +18688,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -16936,7 +18708,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16950,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", @@ -16967,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", @@ -16985,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": { @@ -17016,7 +18800,8 @@ 8 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17032,7 +18817,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -17045,11 +18831,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17063,7 +18851,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17075,7 +18864,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -17090,7 +18880,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17104,7 +18895,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -17123,7 +18915,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17137,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", @@ -17154,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", @@ -17172,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", @@ -17210,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", @@ -17230,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", @@ -17248,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", @@ -17266,11 +19079,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 4, @@ -17295,7 +19110,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17309,7 +19125,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -17338,7 +19155,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17352,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", @@ -17370,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", @@ -17388,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", @@ -17406,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": { @@ -17425,7 +19251,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17441,7 +19268,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -17454,11 +19282,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17472,7 +19302,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17484,7 +19315,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -17499,7 +19331,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17513,7 +19346,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -17532,7 +19366,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17546,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", @@ -17563,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", @@ -17581,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": { @@ -17612,7 +19458,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17628,7 +19475,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -17641,11 +19489,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17659,7 +19509,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17671,7 +19522,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -17686,7 +19538,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17700,7 +19553,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -17719,7 +19573,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17733,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", @@ -17750,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", @@ -17768,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", @@ -17806,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", @@ -17826,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", @@ -17844,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", @@ -17862,11 +19737,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 4, diff --git a/src/lib/runners/spga.json b/src/lib/runners/spga.json index 3bf8832b1..a6d7d0652 100644 --- a/src/lib/runners/spga.json +++ b/src/lib/runners/spga.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/spki.json b/src/lib/runners/spki.json index a37e014f5..23941ee25 100644 --- a/src/lib/runners/spki.json +++ b/src/lib/runners/spki.json @@ -14,7 +14,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "A", @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -46,7 +48,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -60,11 +63,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -77,11 +82,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -95,13 +102,16 @@ ], "emphasizePriority": false, "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", diff --git a/src/lib/runners/sskt.json b/src/lib/runners/sskt.json index 9642eec0a..24f30da04 100644 --- a/src/lib/runners/sskt.json +++ b/src/lib/runners/sskt.json @@ -24,7 +24,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -38,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", @@ -56,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", @@ -74,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", @@ -92,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", @@ -110,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", @@ -128,11 +139,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 7, "containerState": "ready", diff --git a/src/lib/runners/sucz.json b/src/lib/runners/sucz.json index c246ddf95..b790f1a72 100644 --- a/src/lib/runners/sucz.json +++ b/src/lib/runners/sucz.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -36,7 +37,8 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/svbd.json b/src/lib/runners/svbd.json index 8becffe02..918cef5c0 100644 --- a/src/lib/runners/svbd.json +++ b/src/lib/runners/svbd.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -55,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", @@ -72,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": { @@ -95,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -107,7 +117,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -121,7 +132,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -134,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": { @@ -157,7 +173,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -169,7 +186,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -180,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": { @@ -199,7 +220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -211,7 +233,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -223,7 +246,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -234,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": { @@ -257,7 +285,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -269,7 +298,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -280,27 +310,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": 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", @@ -320,7 +357,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -332,7 +370,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -348,7 +387,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -361,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", @@ -378,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": { @@ -401,7 +447,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -413,7 +460,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -427,7 +475,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -440,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": { @@ -463,7 +516,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -475,7 +529,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -486,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": { @@ -505,7 +563,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -517,7 +576,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -529,7 +589,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -540,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": { @@ -563,7 +628,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -575,7 +641,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -586,27 +653,34 @@ "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", @@ -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,27 +997,34 @@ "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", @@ -935,7 +1046,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -947,7 +1059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -963,7 +1076,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -976,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", @@ -993,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": { @@ -1016,7 +1136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1028,7 +1149,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1042,7 +1164,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1055,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": { @@ -1078,7 +1205,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1090,7 +1218,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1101,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": { @@ -1120,7 +1252,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1132,7 +1265,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1144,7 +1278,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1155,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": { @@ -1178,7 +1317,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1190,7 +1330,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -1201,27 +1342,34 @@ "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", @@ -1242,7 +1390,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1254,7 +1403,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1270,7 +1420,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1283,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", @@ -1300,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": { @@ -1323,7 +1480,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1335,7 +1493,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1349,7 +1508,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1362,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": { @@ -1385,7 +1549,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1397,7 +1562,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1408,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": { @@ -1428,7 +1597,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -1439,21 +1609,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": 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", @@ -1474,7 +1649,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1486,7 +1662,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1502,7 +1679,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1515,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", @@ -1532,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": { @@ -1555,7 +1739,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1567,7 +1752,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1581,7 +1767,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1594,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": { @@ -1617,7 +1808,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1629,7 +1821,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1640,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": { @@ -1660,7 +1856,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -1671,21 +1868,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": 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", @@ -1706,7 +1908,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1718,7 +1921,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1734,7 +1938,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1747,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", @@ -1764,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": { @@ -1787,7 +1998,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1799,7 +2011,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1813,7 +2026,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -1826,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": { @@ -1849,7 +2067,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1861,7 +2080,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1872,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": { @@ -1892,7 +2115,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -1903,21 +2127,26 @@ "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", @@ -1939,7 +2168,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1951,7 +2181,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1967,7 +2198,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -1980,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", @@ -1997,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": { @@ -2020,7 +2258,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2032,7 +2271,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2046,7 +2286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -2059,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": { @@ -2082,7 +2327,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2094,7 +2340,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2105,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": { @@ -2125,7 +2375,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2137,7 +2388,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2149,7 +2401,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2160,25 +2413,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": "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", @@ -2199,7 +2459,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2211,7 +2472,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2227,7 +2489,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2240,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", @@ -2257,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": { @@ -2280,7 +2549,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2292,7 +2562,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2306,7 +2577,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -2319,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": { @@ -2342,7 +2618,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2354,7 +2631,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2365,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": { @@ -2385,7 +2666,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2397,7 +2679,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2409,7 +2692,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2420,25 +2704,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": "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", @@ -2459,7 +2750,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2471,7 +2763,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2487,7 +2780,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2500,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", @@ -2517,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": { @@ -2540,7 +2840,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2552,7 +2853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2566,7 +2868,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -2579,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": { @@ -2602,7 +2909,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2614,7 +2922,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2625,19 +2934,24 @@ "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", @@ -2658,7 +2972,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2670,7 +2985,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2686,7 +3002,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2699,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", @@ -2716,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": { @@ -2739,7 +3062,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2751,7 +3075,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2765,7 +3090,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -2778,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": { @@ -2801,7 +3131,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2813,7 +3144,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2824,19 +3156,24 @@ "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", @@ -2857,7 +3194,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2869,7 +3207,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2885,7 +3224,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -2898,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", @@ -2915,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": { @@ -2938,7 +3284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2950,7 +3297,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2964,7 +3312,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -2977,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": { @@ -3000,7 +3353,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3012,7 +3366,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3023,19 +3378,24 @@ "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", @@ -3057,7 +3417,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3069,7 +3430,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3085,7 +3447,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3098,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", @@ -3115,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": { @@ -3138,7 +3507,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3150,7 +3520,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3164,7 +3535,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3177,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": { @@ -3200,7 +3576,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3212,7 +3589,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3224,7 +3602,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3236,7 +3615,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3250,7 +3630,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3263,27 +3644,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 }, - "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", @@ -3304,7 +3693,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3316,7 +3706,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3332,7 +3723,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3345,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", @@ -3362,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": { @@ -3385,7 +3783,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3397,7 +3796,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3411,7 +3811,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3424,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": { @@ -3447,7 +3852,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3459,7 +3865,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3471,7 +3878,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3483,7 +3891,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3497,7 +3906,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3510,27 +3920,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 }, - "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", @@ -3551,7 +3969,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3563,7 +3982,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3579,7 +3999,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3592,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", @@ -3609,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": { @@ -3631,7 +4058,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3643,7 +4071,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3655,7 +4084,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3669,7 +4099,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3682,21 +4113,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 5, "containerState": "ready", @@ -3717,7 +4154,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3729,7 +4167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3745,7 +4184,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3758,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", @@ -3775,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": { @@ -3797,7 +4243,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3809,7 +4256,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3821,7 +4269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3835,7 +4284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -3848,21 +4298,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -3883,7 +4339,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3895,7 +4352,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3911,7 +4369,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -3924,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", @@ -3941,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": { @@ -3963,7 +4428,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3975,7 +4441,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3987,7 +4454,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4001,7 +4469,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -4014,21 +4483,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, @@ -4050,7 +4525,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4062,7 +4538,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4078,7 +4555,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -4091,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", @@ -4108,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": { @@ -4130,7 +4614,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4142,7 +4627,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4154,7 +4640,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4168,7 +4655,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -4181,21 +4669,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": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -4213,7 +4707,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4225,7 +4720,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4239,7 +4735,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -4252,15 +4749,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 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/sxnt.json b/src/lib/runners/sxnt.json index 30072cda9..d8e8c7fc6 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,15 +69,19 @@ "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, diff --git a/src/lib/runners/tfsi.json b/src/lib/runners/tfsi.json index 56260ac55..5238f68c5 100644 --- a/src/lib/runners/tfsi.json +++ b/src/lib/runners/tfsi.json @@ -16,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -30,7 +31,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -53,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -67,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", @@ -85,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": { @@ -104,7 +111,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +128,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -133,11 +142,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -151,7 +162,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -163,7 +175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -178,7 +191,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -192,7 +206,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -211,7 +226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -225,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", @@ -242,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", @@ -260,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": { @@ -291,7 +318,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -307,7 +335,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -320,11 +349,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -338,7 +369,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -350,7 +382,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -365,7 +398,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -379,7 +413,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -398,7 +433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -412,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", @@ -429,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", @@ -447,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", @@ -485,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", @@ -505,11 +557,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/thbw.json b/src/lib/runners/thbw.json index d0f54282c..07b8d1e10 100644 --- a/src/lib/runners/thbw.json +++ b/src/lib/runners/thbw.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -22,9 +23,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/thkn.json b/src/lib/runners/thkn.json index 403c17e8c..cd668416d 100644 --- a/src/lib/runners/thkn.json +++ b/src/lib/runners/thkn.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "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": "d", @@ -66,19 +70,24 @@ "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", @@ -97,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -111,7 +121,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -125,7 +136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -139,7 +151,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -150,19 +163,24 @@ "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, @@ -182,7 +200,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -196,7 +215,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -210,7 +230,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -224,7 +245,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -235,19 +257,24 @@ "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, @@ -267,7 +294,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -281,7 +309,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -295,7 +324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -309,7 +339,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -320,19 +351,24 @@ "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, @@ -353,7 +389,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -367,7 +404,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -381,7 +419,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -395,7 +434,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -406,19 +446,24 @@ "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, @@ -438,7 +483,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -452,7 +498,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -466,7 +513,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -480,7 +528,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -491,19 +540,24 @@ "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, @@ -523,7 +577,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -537,7 +592,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -548,13 +604,16 @@ "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, @@ -574,7 +633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -588,7 +648,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -599,13 +660,16 @@ "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, @@ -625,7 +689,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -639,7 +704,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -650,13 +716,16 @@ "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, @@ -676,7 +745,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -690,7 +760,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -701,13 +772,16 @@ "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, @@ -728,7 +802,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -742,7 +817,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -753,13 +829,16 @@ "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, @@ -776,7 +855,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/tjaf.json b/src/lib/runners/tjaf.json index a2f73ad21..4fbd58ad7 100644 --- a/src/lib/runners/tjaf.json +++ b/src/lib/runners/tjaf.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -68,7 +72,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -82,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -96,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", @@ -117,21 +126,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/toem.json b/src/lib/runners/toem.json index d840df6a9..d973b7d47 100644 --- a/src/lib/runners/toem.json +++ b/src/lib/runners/toem.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32,7 +33,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -61,7 +63,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -75,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", @@ -93,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", @@ -111,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", @@ -129,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", @@ -146,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", @@ -164,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", @@ -184,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", @@ -202,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", @@ -220,11 +240,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 12, "containerState": "ready", diff --git a/src/lib/runners/tpyg.json b/src/lib/runners/tpyg.json index 2c5713b1a..f88968497 100644 --- a/src/lib/runners/tpyg.json +++ b/src/lib/runners/tpyg.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -55,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", @@ -72,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": { @@ -95,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -107,7 +117,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -125,7 +136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -138,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", @@ -155,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", @@ -172,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": { @@ -195,7 +215,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -207,7 +228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -219,7 +241,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -231,7 +254,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -247,7 +271,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -261,7 +286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -275,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": { @@ -297,7 +326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -311,31 +341,40 @@ 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", diff --git a/src/lib/runners/udxn.json b/src/lib/runners/udxn.json index 6ac15b1a6..809d9ccae 100644 --- a/src/lib/runners/udxn.json +++ b/src/lib/runners/udxn.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "h", @@ -79,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", @@ -100,18 +108,23 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/uexo.json b/src/lib/runners/uexo.json index 371351df8..c21bbe2fb 100644 --- a/src/lib/runners/uexo.json +++ b/src/lib/runners/uexo.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -53,7 +56,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -68,7 +72,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -80,7 +85,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -94,7 +100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -107,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", @@ -136,15 +149,19 @@ 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": "active", "activePriority": 2, @@ -162,7 +179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -174,7 +192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -190,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -204,7 +224,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -219,7 +240,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -231,7 +253,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -245,7 +268,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -258,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", @@ -287,15 +317,19 @@ 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": "showFuncUnbound", "activePriority": 2, @@ -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,15 +485,19 @@ 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, @@ -465,7 +516,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -477,7 +529,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -493,7 +546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -507,7 +561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -522,7 +577,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -534,7 +590,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -548,7 +605,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -561,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", @@ -590,15 +654,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -616,7 +684,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -628,7 +697,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -644,7 +714,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -658,7 +729,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -673,7 +745,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -685,7 +758,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -699,7 +773,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -712,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", @@ -741,15 +822,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -767,7 +852,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -779,7 +865,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -795,7 +882,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -809,7 +897,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -823,7 +912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -836,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", @@ -859,15 +953,19 @@ 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, diff --git a/src/lib/runners/ugvz.json b/src/lib/runners/ugvz.json index 11e17d4ee..62f0ff37f 100644 --- a/src/lib/runners/ugvz.json +++ b/src/lib/runners/ugvz.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -55,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", @@ -72,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": { @@ -95,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -107,7 +117,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -125,7 +136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -138,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", @@ -155,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", @@ -172,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": { @@ -195,7 +215,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -207,7 +228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -219,7 +241,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -231,7 +254,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -247,7 +271,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -261,7 +286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -275,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": { @@ -297,7 +326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -311,31 +341,40 @@ 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", @@ -355,7 +394,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -367,7 +407,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -383,7 +424,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -396,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", @@ -413,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": { @@ -436,7 +484,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -448,7 +497,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -466,7 +516,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -479,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", @@ -496,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", @@ -513,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": { @@ -536,7 +595,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -548,7 +608,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -560,7 +621,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -572,7 +634,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -588,7 +651,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -602,7 +666,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -616,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": { @@ -638,7 +706,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -652,31 +721,40 @@ 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", @@ -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,31 +1102,40 @@ 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", @@ -1040,7 +1157,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1052,7 +1170,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1068,7 +1187,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1081,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", @@ -1098,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": { @@ -1121,7 +1247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1133,7 +1260,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1151,7 +1279,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1164,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", @@ -1181,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", @@ -1198,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": { @@ -1221,7 +1358,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1233,7 +1371,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1245,7 +1384,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1257,7 +1397,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1273,7 +1414,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1287,7 +1429,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1301,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": { @@ -1323,7 +1469,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1338,7 +1485,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1350,7 +1498,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1368,7 +1517,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1381,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", @@ -1398,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", @@ -1415,39 +1569,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 }, - "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", @@ -1468,7 +1634,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1480,7 +1647,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1496,7 +1664,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1509,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", @@ -1526,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": { @@ -1549,7 +1724,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1561,7 +1737,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1579,7 +1756,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1592,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", @@ -1609,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", @@ -1626,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": { @@ -1649,7 +1835,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1661,7 +1848,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1673,7 +1861,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1685,7 +1874,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1701,7 +1891,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1715,7 +1906,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1729,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": { @@ -1751,7 +1946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1766,7 +1962,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1778,7 +1975,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1796,7 +1994,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1809,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", @@ -1826,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", @@ -1843,39 +2046,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 }, - "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", @@ -1896,7 +2111,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1908,7 +2124,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1924,7 +2141,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1937,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", @@ -1954,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": { @@ -1976,7 +2200,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1988,7 +2213,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2000,7 +2226,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2016,7 +2243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2030,7 +2258,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2044,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": { @@ -2066,7 +2298,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2081,7 +2314,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2093,7 +2327,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2111,7 +2346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2124,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", @@ -2141,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", @@ -2158,33 +2398,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": "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", @@ -2205,7 +2455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2217,7 +2468,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2233,7 +2485,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2246,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", @@ -2263,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": { @@ -2285,7 +2544,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2297,7 +2557,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2309,7 +2570,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2325,7 +2587,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2339,7 +2602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2353,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": { @@ -2375,7 +2642,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2390,7 +2658,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2402,7 +2671,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2420,7 +2690,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2433,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", @@ -2450,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", @@ -2467,33 +2742,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": "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, @@ -2514,7 +2799,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2526,7 +2812,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2542,7 +2829,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2555,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", @@ -2572,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": { @@ -2594,7 +2888,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2606,7 +2901,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2618,7 +2914,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2634,7 +2931,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2648,7 +2946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2662,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": { @@ -2684,7 +2986,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2699,7 +3002,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2711,7 +3015,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2729,7 +3034,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2742,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", @@ -2759,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", @@ -2776,33 +3086,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": "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, @@ -2824,7 +3144,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2836,7 +3157,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2852,7 +3174,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2865,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", @@ -2882,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": { @@ -2904,7 +3233,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2916,7 +3246,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2928,7 +3259,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2944,7 +3276,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2958,7 +3291,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2973,7 +3307,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2985,7 +3320,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3001,7 +3337,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3014,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", @@ -3031,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": { @@ -3061,7 +3406,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3076,7 +3422,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3088,7 +3435,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3106,7 +3454,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3119,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", @@ -3136,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", @@ -3153,33 +3506,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": "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, @@ -3200,7 +3563,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3212,7 +3576,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3228,7 +3593,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3241,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", @@ -3258,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": { @@ -3280,7 +3652,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3292,7 +3665,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3304,7 +3678,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3320,7 +3695,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3334,7 +3710,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3349,7 +3726,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3361,7 +3739,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3377,7 +3756,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3390,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", @@ -3407,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": { @@ -3437,7 +3825,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3452,7 +3841,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3464,7 +3854,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3482,7 +3873,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3495,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", @@ -3512,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", @@ -3529,33 +3925,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": "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, @@ -3573,7 +3979,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3585,7 +3992,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3601,7 +4009,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3615,7 +4024,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3630,7 +4040,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3642,7 +4053,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3658,7 +4070,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3671,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", @@ -3688,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": { @@ -3718,7 +4139,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3733,7 +4155,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3745,7 +4168,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3763,7 +4187,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3776,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", @@ -3793,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", @@ -3810,27 +4239,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 }, - "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, @@ -3848,7 +4285,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3860,7 +4298,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3876,7 +4315,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3890,7 +4330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3905,7 +4346,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3917,7 +4359,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3933,7 +4376,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3946,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", @@ -3963,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": { @@ -3993,7 +4445,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4008,7 +4461,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4020,7 +4474,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4038,7 +4493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4051,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", @@ -4068,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", @@ -4085,27 +4545,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 }, - "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -4123,7 +4591,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4135,7 +4604,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4151,7 +4621,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4165,7 +4636,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4180,7 +4652,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4192,7 +4665,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4208,7 +4682,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4221,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", @@ -4238,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": { @@ -4268,7 +4751,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4283,7 +4767,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4295,7 +4780,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4313,7 +4799,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4326,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", @@ -4343,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", @@ -4360,27 +4851,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 }, - "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, @@ -4399,7 +4898,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4411,7 +4911,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4427,7 +4928,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4441,7 +4943,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4456,7 +4959,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4468,7 +4972,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4484,7 +4989,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4497,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", @@ -4514,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": { @@ -4544,7 +5058,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4559,7 +5074,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4571,7 +5087,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4589,7 +5106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4602,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", @@ -4619,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", @@ -4636,27 +5158,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -4674,7 +5204,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4686,7 +5217,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4702,7 +5234,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4716,7 +5249,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4731,7 +5265,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4743,7 +5278,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4759,7 +5295,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4772,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", @@ -4789,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": { @@ -4819,7 +5364,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4834,7 +5380,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4846,7 +5393,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4864,7 +5412,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4877,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", @@ -4894,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", @@ -4911,27 +5464,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -4949,7 +5510,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4961,7 +5523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4977,7 +5540,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4991,7 +5555,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5006,7 +5571,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5018,7 +5584,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5034,7 +5601,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5047,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", @@ -5064,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": { @@ -5094,7 +5670,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5112,7 +5689,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5125,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", @@ -5142,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", @@ -5159,21 +5741,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 }, "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, @@ -5191,7 +5779,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5203,7 +5792,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5219,7 +5809,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5233,7 +5824,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5248,7 +5840,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5260,7 +5853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5276,7 +5870,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5289,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", @@ -5306,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": { @@ -5336,7 +5939,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5354,7 +5958,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5367,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", @@ -5384,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", @@ -5401,21 +6010,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 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, @@ -5433,7 +6048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5445,7 +6061,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5461,7 +6078,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5475,7 +6093,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5490,7 +6109,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5502,7 +6122,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5518,7 +6139,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5531,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", @@ -5548,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": { @@ -5578,7 +6208,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5596,7 +6227,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5609,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", @@ -5626,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", @@ -5643,21 +6279,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 }, "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, @@ -5676,7 +6318,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5688,7 +6331,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5704,7 +6348,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5718,7 +6363,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5733,7 +6379,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5745,7 +6392,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5761,7 +6409,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5774,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", @@ -5791,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": { @@ -5821,7 +6478,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5841,7 +6499,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5855,7 +6514,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5870,7 +6530,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5882,7 +6543,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5898,7 +6560,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5911,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", @@ -5928,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", @@ -5957,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", @@ -5974,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", @@ -5991,21 +6666,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 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -6023,7 +6704,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6035,7 +6717,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6051,7 +6734,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6065,7 +6749,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6080,7 +6765,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6092,7 +6778,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6108,7 +6795,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6121,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", @@ -6138,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": { @@ -6168,7 +6864,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6188,7 +6885,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6202,7 +6900,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6217,7 +6916,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6229,7 +6929,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6245,7 +6946,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6258,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", @@ -6275,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", @@ -6304,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", @@ -6321,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", @@ -6338,21 +7052,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 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -6370,7 +7090,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6382,7 +7103,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6402,7 +7124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6416,7 +7139,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6431,7 +7155,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6443,7 +7168,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6459,7 +7185,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6472,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", @@ -6489,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", @@ -6518,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", @@ -6535,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", @@ -6552,15 +7291,19 @@ 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, @@ -6578,7 +7321,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6590,7 +7334,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6610,7 +7355,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6624,7 +7370,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6639,7 +7386,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6651,7 +7399,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6667,7 +7416,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6680,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", @@ -6697,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", @@ -6726,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", @@ -6743,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", @@ -6760,15 +7522,19 @@ 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": "showFuncUnbound", "activePriority": 4, @@ -6786,7 +7552,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6798,7 +7565,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6818,7 +7586,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6832,7 +7601,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6847,7 +7617,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6859,7 +7630,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6875,7 +7647,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6888,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", @@ -6905,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", @@ -6934,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", @@ -6951,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", @@ -6968,15 +7753,19 @@ 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, @@ -6995,7 +7784,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7007,7 +7797,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7027,7 +7818,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7041,7 +7833,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7056,7 +7849,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7068,7 +7862,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7084,7 +7879,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7097,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", @@ -7114,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", @@ -7143,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", @@ -7160,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", @@ -7177,15 +7985,19 @@ 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": "betaReducePreviewAfter", "activePriority": 4, @@ -7203,7 +8015,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7215,7 +8028,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7235,7 +8049,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7249,7 +8064,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7264,7 +8080,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7276,7 +8093,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7292,7 +8110,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7305,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", @@ -7322,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", @@ -7351,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", @@ -7368,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", @@ -7385,15 +8216,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 4, @@ -7411,7 +8246,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7423,7 +8259,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7443,7 +8280,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7457,7 +8295,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7473,7 +8312,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7486,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", @@ -7503,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", @@ -7526,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", @@ -7543,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", @@ -7560,15 +8410,19 @@ 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, @@ -7586,7 +8440,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7598,7 +8453,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7618,7 +8474,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7632,7 +8489,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7648,7 +8506,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7661,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", @@ -7678,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", @@ -7701,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", @@ -7718,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", @@ -7735,15 +8604,19 @@ 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": "showFuncBound", "activePriority": 4, @@ -7761,7 +8634,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7773,7 +8647,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7793,7 +8668,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7807,7 +8683,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7823,7 +8700,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7836,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", @@ -7853,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", @@ -7876,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", @@ -7893,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", @@ -7910,15 +8798,19 @@ 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, @@ -7937,7 +8829,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7949,7 +8842,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7969,7 +8863,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7983,7 +8878,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7999,7 +8895,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8012,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", @@ -8029,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", @@ -8052,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", @@ -8069,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", @@ -8086,15 +8993,19 @@ 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": "betaReducePreviewAfter", "activePriority": 4, @@ -8112,7 +9023,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8124,7 +9036,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8144,7 +9057,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8158,7 +9072,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8174,7 +9089,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8187,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", @@ -8204,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", @@ -8227,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", @@ -8244,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", @@ -8261,15 +9187,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 4, @@ -8287,7 +9217,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8299,7 +9230,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8321,7 +9253,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8334,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", @@ -8351,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", @@ -8368,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", @@ -8385,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", @@ -8402,15 +9343,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 }, "previouslyChangedExpressionState": "default", "activePriority": 4, diff --git a/src/lib/runners/uhqo.json b/src/lib/runners/uhqo.json index 124b6e36a..3d69ebd93 100644 --- a/src/lib/runners/uhqo.json +++ b/src/lib/runners/uhqo.json @@ -12,7 +12,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 6, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/uiwl.json b/src/lib/runners/uiwl.json index 053cff0f1..349a2f604 100644 --- a/src/lib/runners/uiwl.json +++ b/src/lib/runners/uiwl.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": { @@ -45,7 +47,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -59,13 +62,16 @@ ], "emphasizePriority": false, "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, @@ -87,7 +93,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -101,7 +108,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -117,7 +125,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -131,13 +140,16 @@ ], "emphasizePriority": false, "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, @@ -159,7 +171,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -173,7 +186,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -189,7 +203,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -203,13 +218,16 @@ ], "emphasizePriority": false, "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, @@ -230,7 +248,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -244,11 +263,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -269,7 +290,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -283,11 +305,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -305,7 +329,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/unxf.json b/src/lib/runners/unxf.json index 1477743ec..5830a38c4 100644 --- a/src/lib/runners/unxf.json +++ b/src/lib/runners/unxf.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -38,13 +40,16 @@ "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", @@ -63,7 +68,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -77,7 +83,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -88,13 +95,16 @@ "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, @@ -114,7 +124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -128,7 +139,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -139,13 +151,16 @@ "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, @@ -166,7 +181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -180,7 +196,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "B", @@ -191,13 +208,16 @@ "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, @@ -214,7 +234,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/uppk.json b/src/lib/runners/uppk.json index 0bec7284f..d9daa0147 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,19 +70,24 @@ "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, diff --git a/src/lib/runners/uvmv.json b/src/lib/runners/uvmv.json index 8d5c3ce24..68458f918 100644 --- a/src/lib/runners/uvmv.json +++ b/src/lib/runners/uvmv.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "n", @@ -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": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "m", @@ -52,13 +56,16 @@ "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", diff --git a/src/lib/runners/uwma.json b/src/lib/runners/uwma.json index 3423f8479..057e6ad18 100644 --- a/src/lib/runners/uwma.json +++ b/src/lib/runners/uwma.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -65,19 +69,24 @@ "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", @@ -97,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -111,7 +121,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -122,13 +133,16 @@ "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", diff --git a/src/lib/runners/uwyn.json b/src/lib/runners/uwyn.json index 9b47e3916..f8bf7a4f5 100644 --- a/src/lib/runners/uwyn.json +++ b/src/lib/runners/uwyn.json @@ -16,7 +16,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -30,7 +31,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -53,7 +55,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -67,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", @@ -85,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": { @@ -104,7 +111,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +128,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -133,11 +142,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -151,7 +162,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -163,7 +175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -178,7 +191,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -192,7 +206,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -211,7 +226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -225,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", @@ -242,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", @@ -260,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": { @@ -291,7 +318,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -307,7 +335,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -320,11 +349,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -338,7 +369,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -350,7 +382,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -365,7 +398,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -379,7 +413,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -398,7 +433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -412,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", @@ -429,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", @@ -447,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", @@ -485,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", @@ -505,11 +557,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 2, @@ -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,11 +1127,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 2, @@ -1048,7 +1156,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1062,7 +1171,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1085,7 +1195,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1099,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", @@ -1117,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": { @@ -1136,7 +1251,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1152,7 +1268,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1165,11 +1282,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1183,7 +1302,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1195,7 +1315,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1210,7 +1331,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1224,7 +1346,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1243,7 +1366,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1257,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", @@ -1274,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", @@ -1292,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": { @@ -1323,7 +1458,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1339,7 +1475,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1352,11 +1489,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1370,7 +1509,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1382,7 +1522,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1397,7 +1538,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1411,7 +1553,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1430,7 +1573,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1444,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", @@ -1461,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", @@ -1479,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", @@ -1517,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", @@ -1537,11 +1697,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "falseCaseActive", "activePriority": 2, @@ -1570,7 +1732,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1584,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", @@ -1602,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": { @@ -1621,7 +1788,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1637,7 +1805,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1650,11 +1819,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1668,7 +1839,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1680,7 +1852,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1695,7 +1868,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1709,7 +1883,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1728,7 +1903,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1742,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", @@ -1759,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", @@ -1777,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": { @@ -1808,7 +1995,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1824,7 +2012,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1837,11 +2026,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1855,7 +2046,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1867,7 +2059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1882,7 +2075,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1896,7 +2090,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -1915,7 +2110,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1929,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", @@ -1946,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", @@ -1964,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", @@ -2002,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", @@ -2020,11 +2231,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 2, @@ -2053,7 +2266,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2067,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", @@ -2085,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": { @@ -2104,7 +2322,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2120,7 +2339,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2133,11 +2353,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2151,7 +2373,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2163,7 +2386,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2178,7 +2402,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2192,7 +2417,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2211,7 +2437,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2225,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", @@ -2242,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", @@ -2260,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": { @@ -2291,7 +2529,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2307,7 +2546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2320,11 +2560,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2338,7 +2580,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2350,7 +2593,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2365,7 +2609,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2379,7 +2624,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2398,7 +2644,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2412,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", @@ -2429,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", @@ -2447,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", @@ -2485,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", @@ -2503,11 +2765,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 3, @@ -2536,7 +2800,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2550,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", @@ -2568,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": { @@ -2587,7 +2856,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2603,7 +2873,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2616,11 +2887,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2634,7 +2907,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2646,7 +2920,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2661,7 +2936,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2675,7 +2951,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2694,7 +2971,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2708,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", @@ -2725,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", @@ -2743,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": { @@ -2774,7 +3063,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2790,7 +3080,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2803,11 +3094,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2821,7 +3114,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2833,7 +3127,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2848,7 +3143,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2862,7 +3158,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -2881,7 +3178,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2895,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", @@ -2912,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", @@ -2930,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", @@ -2968,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", @@ -2986,11 +3299,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 3, @@ -3019,7 +3334,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3033,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", @@ -3051,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": { @@ -3070,7 +3390,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3086,7 +3407,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3099,11 +3421,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3117,7 +3441,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3129,7 +3454,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3144,7 +3470,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3158,7 +3485,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3177,7 +3505,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3191,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", @@ -3208,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", @@ -3226,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": { @@ -3257,7 +3597,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3273,7 +3614,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3286,11 +3628,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3304,7 +3648,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3316,7 +3661,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3331,7 +3677,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3345,7 +3692,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3364,7 +3712,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3378,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", @@ -3395,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", @@ -3413,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", @@ -3451,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", @@ -3469,11 +3833,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 3, @@ -3502,7 +3868,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3516,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", @@ -3534,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": { @@ -3553,7 +3924,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3569,7 +3941,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3582,11 +3955,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3600,7 +3975,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3612,7 +3988,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3627,7 +4004,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3641,7 +4019,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3660,7 +4039,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3674,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", @@ -3691,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", @@ -3709,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": { @@ -3740,7 +4131,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3756,7 +4148,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3769,11 +4162,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3787,7 +4182,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3799,7 +4195,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3814,7 +4211,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3828,7 +4226,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -3847,7 +4246,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3861,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", @@ -3878,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", @@ -3896,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", @@ -3934,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", @@ -3952,11 +4367,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -3986,7 +4403,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4000,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", @@ -4018,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": { @@ -4037,7 +4459,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4053,7 +4476,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4066,11 +4490,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4084,7 +4510,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4096,7 +4523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4111,7 +4539,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4125,7 +4554,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4144,7 +4574,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4158,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", @@ -4175,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", @@ -4193,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": { @@ -4224,7 +4666,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4241,7 +4684,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4257,7 +4701,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4270,11 +4715,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4288,7 +4735,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4300,7 +4748,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4315,7 +4764,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4329,7 +4779,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4348,7 +4799,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4362,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", @@ -4379,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", @@ -4397,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": { @@ -4427,7 +4890,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4443,7 +4907,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4456,11 +4921,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4474,7 +4941,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4486,7 +4954,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4501,7 +4970,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4515,7 +4985,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4534,7 +5005,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4548,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", @@ -4565,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", @@ -4583,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": { @@ -4617,7 +5101,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4629,7 +5114,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4644,7 +5130,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4658,7 +5145,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4677,7 +5165,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4691,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", @@ -4708,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", @@ -4726,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", @@ -4764,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", @@ -4782,11 +5286,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 3, @@ -4815,7 +5321,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4829,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", @@ -4847,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": { @@ -4866,7 +5377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4882,7 +5394,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4895,11 +5408,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4913,7 +5428,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4925,7 +5441,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4940,7 +5457,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4954,7 +5472,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -4973,7 +5492,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4987,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", @@ -5004,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", @@ -5022,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": { @@ -5053,7 +5584,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5070,7 +5602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5086,7 +5619,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5099,11 +5633,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5117,7 +5653,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5129,7 +5666,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5144,7 +5682,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5158,7 +5697,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5177,7 +5717,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5191,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", @@ -5208,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", @@ -5226,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": { @@ -5256,7 +5808,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5272,7 +5825,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5285,11 +5839,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5303,7 +5859,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5315,7 +5872,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5330,7 +5888,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5344,7 +5903,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5363,7 +5923,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5377,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", @@ -5394,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", @@ -5412,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": { @@ -5446,7 +6019,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5458,7 +6032,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5473,7 +6048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5487,7 +6063,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5506,7 +6083,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5520,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", @@ -5537,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", @@ -5555,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", @@ -5593,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", @@ -5611,11 +6204,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 3, @@ -5644,7 +6239,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5658,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", @@ -5676,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": { @@ -5697,7 +6297,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5713,7 +6314,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5726,11 +6328,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5744,7 +6348,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5756,7 +6361,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5771,7 +6377,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5785,7 +6392,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5804,7 +6412,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5818,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", @@ -5835,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", @@ -5853,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": { @@ -5883,7 +6503,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5899,7 +6520,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5912,11 +6534,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5930,7 +6554,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5942,7 +6567,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5957,7 +6583,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5971,7 +6598,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -5990,7 +6618,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6004,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", @@ -6021,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", @@ -6039,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": { @@ -6074,7 +6715,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6086,7 +6728,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6101,7 +6744,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6115,7 +6759,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6134,7 +6779,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6148,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", @@ -6165,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", @@ -6183,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", @@ -6215,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", @@ -6233,11 +6892,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 3, @@ -6266,7 +6927,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6280,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", @@ -6298,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": { @@ -6319,7 +6985,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6335,7 +7002,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6348,11 +7016,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6366,7 +7036,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6378,7 +7049,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6393,7 +7065,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6407,7 +7080,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6426,7 +7100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6440,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", @@ -6457,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", @@ -6475,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": { @@ -6505,7 +7191,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6521,7 +7208,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6534,11 +7222,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6552,7 +7242,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6564,7 +7255,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6579,7 +7271,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6593,7 +7286,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6612,7 +7306,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6626,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", @@ -6643,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", @@ -6661,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": { @@ -6696,7 +7403,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6708,7 +7416,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6723,7 +7432,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6737,7 +7447,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -6756,7 +7467,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6770,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", @@ -6787,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", @@ -6805,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", @@ -6837,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", @@ -6855,11 +7580,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 3, @@ -6888,7 +7615,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6902,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", @@ -6920,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": { @@ -6941,7 +7673,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6957,7 +7690,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6970,11 +7704,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6988,7 +7724,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7000,7 +7737,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7015,7 +7753,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7029,7 +7768,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7048,7 +7788,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7062,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", @@ -7079,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", @@ -7097,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": { @@ -7127,7 +7879,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7143,7 +7896,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7156,11 +7910,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7174,7 +7930,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7186,7 +7943,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7201,7 +7959,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7215,7 +7974,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7234,7 +7994,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7248,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", @@ -7265,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", @@ -7283,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": { @@ -7318,7 +8091,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7330,7 +8104,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7345,7 +8120,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7359,7 +8135,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7378,7 +8155,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7392,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", @@ -7409,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", @@ -7427,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", @@ -7459,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", @@ -7477,11 +8268,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -7511,7 +8304,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7525,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", @@ -7543,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": { @@ -7564,7 +8362,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7580,7 +8379,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7593,11 +8393,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7611,7 +8413,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7623,7 +8426,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7638,7 +8442,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7652,7 +8457,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7671,7 +8477,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7685,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", @@ -7702,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", @@ -7720,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": { @@ -7750,7 +8568,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7766,7 +8585,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7779,11 +8599,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7797,7 +8619,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7809,7 +8632,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7824,7 +8648,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7838,7 +8663,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -7857,7 +8683,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7871,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", @@ -7888,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", @@ -7906,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": { @@ -7941,7 +8780,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7953,7 +8793,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7968,7 +8809,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7982,7 +8824,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8001,7 +8844,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8015,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": { @@ -8034,7 +8880,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8050,7 +8897,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8063,11 +8911,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8081,7 +8931,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8093,7 +8944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8108,7 +8960,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8122,7 +8975,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8141,7 +8995,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8155,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", @@ -8172,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", @@ -8190,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": { @@ -8221,7 +9087,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8237,7 +9104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8250,11 +9118,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8268,7 +9138,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8280,7 +9151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8295,7 +9167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8309,7 +9182,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8328,7 +9202,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8342,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", @@ -8359,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", @@ -8377,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", @@ -8415,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", @@ -8447,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", @@ -8465,11 +9362,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 3, @@ -8498,7 +9397,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8512,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", @@ -8530,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": { @@ -8551,7 +9455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8567,7 +9472,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8580,11 +9486,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8598,7 +9506,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8610,7 +9519,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8625,7 +9535,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8639,7 +9550,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8658,7 +9570,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8672,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", @@ -8689,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", @@ -8707,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": { @@ -8737,7 +9661,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8753,7 +9678,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8766,11 +9692,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8784,7 +9712,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8796,7 +9725,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8811,7 +9741,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8825,7 +9756,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8844,7 +9776,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8858,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", @@ -8875,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", @@ -8893,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": { @@ -8928,7 +9873,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8940,7 +9886,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8955,7 +9902,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8969,7 +9917,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -8988,7 +9937,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9002,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": { @@ -9021,7 +9973,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9037,7 +9990,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9050,11 +10004,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9068,7 +10024,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9080,7 +10037,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9095,7 +10053,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9109,7 +10068,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9128,7 +10088,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9142,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", @@ -9159,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", @@ -9177,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": { @@ -9208,7 +10180,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9224,7 +10197,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9237,11 +10211,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9255,7 +10231,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9267,7 +10244,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9282,7 +10260,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9296,7 +10275,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9315,7 +10295,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9329,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", @@ -9346,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", @@ -9364,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", @@ -9402,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", @@ -9434,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", @@ -9452,11 +10455,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 3, @@ -9485,7 +10490,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9499,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", @@ -9517,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": { @@ -9535,7 +10545,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9550,7 +10561,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9564,7 +10576,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9583,7 +10596,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9597,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": { @@ -9616,7 +10632,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9632,7 +10649,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9645,11 +10663,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9663,7 +10683,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9675,7 +10696,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9690,7 +10712,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9704,7 +10727,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9723,7 +10747,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9737,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", @@ -9754,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", @@ -9772,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": { @@ -9803,7 +10839,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9819,7 +10856,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9832,11 +10870,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9850,7 +10890,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9862,7 +10903,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9877,7 +10919,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9891,7 +10934,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -9910,7 +10954,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9924,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", @@ -9941,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", @@ -9959,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", @@ -9997,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", @@ -10023,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", @@ -10041,11 +11106,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "default", "activePriority": 3, @@ -10074,7 +11141,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10088,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", @@ -10106,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": { @@ -10124,7 +11196,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10139,7 +11212,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10153,7 +11227,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10172,7 +11247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10186,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": { @@ -10205,7 +11283,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10221,7 +11300,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10234,11 +11314,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10252,7 +11334,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10264,7 +11347,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10279,7 +11363,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10293,7 +11378,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10312,7 +11398,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10326,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", @@ -10343,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", @@ -10361,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": { @@ -10392,7 +11490,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10408,7 +11507,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10421,11 +11521,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10439,7 +11541,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10451,7 +11554,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10466,7 +11570,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10480,7 +11585,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10499,7 +11605,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10513,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", @@ -10530,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", @@ -10548,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", @@ -10586,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", @@ -10612,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", @@ -10630,11 +11757,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 3, @@ -10663,7 +11792,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10677,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", @@ -10695,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": { @@ -10713,7 +11847,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10728,7 +11863,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10742,7 +11878,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10761,7 +11898,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10775,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": { @@ -10794,7 +11934,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10810,7 +11951,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10823,11 +11965,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10841,7 +11985,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10853,7 +11998,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10868,7 +12014,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10882,7 +12029,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -10901,7 +12049,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10915,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", @@ -10932,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", @@ -10950,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": { @@ -10981,7 +12141,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10997,7 +12158,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11010,11 +12172,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11028,7 +12192,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11040,7 +12205,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11055,7 +12221,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11069,7 +12236,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11088,7 +12256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11102,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", @@ -11119,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", @@ -11137,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", @@ -11175,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", @@ -11201,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", @@ -11219,11 +12408,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -11253,7 +12444,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11267,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", @@ -11285,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": { @@ -11303,7 +12499,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11324,7 +12521,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11338,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", @@ -11356,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", @@ -11374,7 +12576,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11398,7 +12601,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11412,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", @@ -11430,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", @@ -11448,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": { @@ -11467,7 +12677,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11483,7 +12694,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11496,11 +12708,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11514,7 +12728,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11526,7 +12741,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11541,7 +12757,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11555,7 +12772,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11574,7 +12792,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11588,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", @@ -11605,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", @@ -11623,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": { @@ -11654,7 +12884,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11670,7 +12901,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11683,11 +12915,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11701,7 +12935,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11713,7 +12948,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11728,7 +12964,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11742,7 +12979,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -11761,7 +12999,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11775,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", @@ -11792,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", @@ -11810,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", @@ -11848,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", @@ -11874,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", @@ -11892,11 +13151,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 3, @@ -11925,7 +13186,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11939,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", @@ -11957,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": { @@ -11975,7 +13241,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11996,7 +13263,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12010,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", @@ -12028,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", @@ -12046,7 +13318,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12070,7 +13343,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12084,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", @@ -12102,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", @@ -12120,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": { @@ -12139,7 +13419,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12155,7 +13436,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12168,11 +13450,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12186,7 +13470,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12198,7 +13483,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12213,7 +13499,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12227,7 +13514,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12246,7 +13534,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12260,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", @@ -12277,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", @@ -12295,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": { @@ -12326,7 +13626,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12342,7 +13643,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12355,11 +13657,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12373,7 +13677,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12385,7 +13690,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12400,7 +13706,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12414,7 +13721,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12433,7 +13741,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12447,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", @@ -12464,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", @@ -12482,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", @@ -12520,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", @@ -12546,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", @@ -12564,11 +13893,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 3, @@ -12597,7 +13928,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12611,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", @@ -12629,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", @@ -12647,7 +13983,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12673,7 +14010,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12687,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", @@ -12705,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", @@ -12723,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": { @@ -12742,7 +14086,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12758,7 +14103,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12771,11 +14117,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12789,7 +14137,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12801,7 +14150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12816,7 +14166,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12830,7 +14181,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -12849,7 +14201,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12863,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", @@ -12880,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", @@ -12898,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": { @@ -12929,7 +14293,8 @@ 8 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12945,7 +14310,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12958,11 +14324,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12976,7 +14344,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12988,7 +14357,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13003,7 +14373,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13017,7 +14388,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13036,7 +14408,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13050,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", @@ -13067,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", @@ -13085,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", @@ -13123,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", @@ -13143,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", @@ -13161,11 +14552,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 3, @@ -13194,7 +14587,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13208,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", @@ -13226,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", @@ -13244,7 +14642,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13270,7 +14669,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13284,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", @@ -13302,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", @@ -13320,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": { @@ -13339,7 +14745,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13355,7 +14762,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13368,11 +14776,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13386,7 +14796,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13398,7 +14809,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13413,7 +14825,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13427,7 +14840,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13446,7 +14860,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13460,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", @@ -13477,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", @@ -13495,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": { @@ -13526,7 +14952,8 @@ 8 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13542,7 +14969,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13555,11 +14983,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13573,7 +15003,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13585,7 +15016,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13600,7 +15032,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13614,7 +15047,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13633,7 +15067,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13647,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", @@ -13664,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", @@ -13682,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", @@ -13720,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", @@ -13740,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", @@ -13758,11 +15211,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 4, @@ -13789,7 +15244,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13803,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", @@ -13821,7 +15279,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -13847,7 +15306,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13861,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", @@ -13879,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", @@ -13897,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": { @@ -13916,7 +15382,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13932,7 +15399,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13945,11 +15413,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13963,7 +15433,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13975,7 +15446,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13990,7 +15462,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14004,7 +15477,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14023,7 +15497,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14037,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", @@ -14054,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", @@ -14072,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": { @@ -14103,7 +15589,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14119,7 +15606,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14132,11 +15620,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14150,7 +15640,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14162,7 +15653,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14177,7 +15669,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14191,7 +15684,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14210,7 +15704,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14224,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", @@ -14241,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", @@ -14259,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", @@ -14297,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", @@ -14317,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", @@ -14335,11 +15848,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 4, @@ -14366,7 +15881,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14380,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", @@ -14398,7 +15916,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14424,7 +15943,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14438,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", @@ -14456,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", @@ -14474,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": { @@ -14493,7 +16019,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14509,7 +16036,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14522,11 +16050,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14540,7 +16070,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14552,7 +16083,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14567,7 +16099,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14581,7 +16114,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14600,7 +16134,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14614,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", @@ -14631,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", @@ -14649,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": { @@ -14680,7 +16226,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14696,7 +16243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14709,11 +16257,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14727,7 +16277,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14739,7 +16290,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14754,7 +16306,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14768,7 +16321,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14787,7 +16341,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14801,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", @@ -14818,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", @@ -14836,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", @@ -14874,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", @@ -14894,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", @@ -14912,11 +16485,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 3, @@ -14940,7 +16515,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14954,7 +16530,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -14980,7 +16557,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14994,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", @@ -15012,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", @@ -15030,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": { @@ -15049,7 +16633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15065,7 +16650,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15078,11 +16664,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15096,7 +16684,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15108,7 +16697,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15123,7 +16713,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15137,7 +16728,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15156,7 +16748,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15170,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", @@ -15187,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", @@ -15205,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": { @@ -15236,7 +16840,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15252,7 +16857,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15265,11 +16871,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15283,7 +16891,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15295,7 +16904,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15310,7 +16920,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15324,7 +16935,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -15343,7 +16955,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15357,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", @@ -15374,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", @@ -15392,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", @@ -15430,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", @@ -15450,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", @@ -15468,11 +17099,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 3, diff --git a/src/lib/runners/vcqp.json b/src/lib/runners/vcqp.json index 790b88fce..d5cc057cc 100644 --- a/src/lib/runners/vcqp.json +++ b/src/lib/runners/vcqp.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -35,7 +37,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -51,7 +54,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -65,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -79,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", @@ -100,18 +108,23 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", diff --git a/src/lib/runners/vdhd.json b/src/lib/runners/vdhd.json index 8ba5d649c..4702beb37 100644 --- a/src/lib/runners/vdhd.json +++ b/src/lib/runners/vdhd.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", @@ -97,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -111,7 +121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -126,7 +137,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -138,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -149,19 +162,24 @@ "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", @@ -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,19 +256,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 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 3, "containerState": "stepped", @@ -266,7 +293,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -280,7 +308,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -295,7 +324,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -307,7 +337,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -318,19 +349,24 @@ "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", @@ -350,7 +386,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -364,7 +401,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -375,13 +413,16 @@ "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", @@ -401,7 +442,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -415,7 +457,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -426,13 +469,16 @@ "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, @@ -452,7 +498,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -466,7 +513,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -477,13 +525,16 @@ "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, @@ -503,7 +554,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -517,7 +569,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -528,13 +581,16 @@ "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, @@ -555,7 +611,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -569,7 +626,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -580,13 +638,16 @@ "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, @@ -603,7 +664,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/veft.json b/src/lib/runners/veft.json index cbc57478e..eff11bba6 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/vfdw.json b/src/lib/runners/vfdw.json index 3af6ccd9f..a089050c3 100644 --- a/src/lib/runners/vfdw.json +++ b/src/lib/runners/vfdw.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "f", @@ -55,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", @@ -72,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": { @@ -94,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -106,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -134,7 +146,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -148,7 +161,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -162,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", @@ -183,22 +200,28 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "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", @@ -215,7 +238,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/vhte.json b/src/lib/runners/vhte.json index f3f50f335..989333f82 100644 --- a/src/lib/runners/vhte.json +++ b/src/lib/runners/vhte.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/vilr.json b/src/lib/runners/vilr.json index 4141a6cfa..4638d50bd 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,19 +70,24 @@ "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, diff --git a/src/lib/runners/vlhb.json b/src/lib/runners/vlhb.json index ee6616824..75e0bd72d 100644 --- a/src/lib/runners/vlhb.json +++ b/src/lib/runners/vlhb.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -67,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": { @@ -86,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -110,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -121,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", @@ -144,23 +158,28 @@ ], "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", diff --git a/src/lib/runners/vlob.json b/src/lib/runners/vlob.json index accd01472..b54da0647 100644 --- a/src/lib/runners/vlob.json +++ b/src/lib/runners/vlob.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -54,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", @@ -71,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", @@ -88,15 +95,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 }, "numLeafNodes": 4, "containerState": "ready", @@ -113,7 +124,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/vmkg.json b/src/lib/runners/vmkg.json index 6d6b845d9..c0278cc9a 100644 --- a/src/lib/runners/vmkg.json +++ b/src/lib/runners/vmkg.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/voeb.json b/src/lib/runners/voeb.json index 519b7dc0a..864a015f4 100644 --- a/src/lib/runners/voeb.json +++ b/src/lib/runners/voeb.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -36,7 +37,8 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/vowa.json b/src/lib/runners/vowa.json index e75417b55..5bf0b0079 100644 --- a/src/lib/runners/vowa.json +++ b/src/lib/runners/vowa.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/vozu.json b/src/lib/runners/vozu.json index 479a031e5..58ca5bafd 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,9 +45,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, diff --git a/src/lib/runners/vqwp.json b/src/lib/runners/vqwp.json index e1f2c4565..8be7e1f13 100644 --- a/src/lib/runners/vqwp.json +++ b/src/lib/runners/vqwp.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/vqyl.json b/src/lib/runners/vqyl.json index 43d3ca46f..d6ae10dcf 100644 --- a/src/lib/runners/vqyl.json +++ b/src/lib/runners/vqyl.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "binaryFirst" + "shorthandNumberAfterConvert": "binaryFirst", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "binarySecond" + "shorthandNumberAfterConvert": "binarySecond", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +46,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -68,7 +72,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -80,7 +85,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -94,7 +100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "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", @@ -141,31 +151,40 @@ 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", diff --git a/src/lib/runners/vsvt.json b/src/lib/runners/vsvt.json index c8786e19b..f07231c1c 100644 --- a/src/lib/runners/vsvt.json +++ b/src/lib/runners/vsvt.json @@ -11,7 +11,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 8 + "shorthandNumber": 8, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "ready", diff --git a/src/lib/runners/vvjn.json b/src/lib/runners/vvjn.json index 9d9acec91..abec492e5 100644 --- a/src/lib/runners/vvjn.json +++ b/src/lib/runners/vvjn.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/vwvb.json b/src/lib/runners/vwvb.json index 31ccffc73..549c766af 100644 --- a/src/lib/runners/vwvb.json +++ b/src/lib/runners/vwvb.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "ready", diff --git a/src/lib/runners/wcer.json b/src/lib/runners/wcer.json index 5befe8e8e..157f82d4e 100644 --- a/src/lib/runners/wcer.json +++ b/src/lib/runners/wcer.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "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": "d", @@ -66,19 +70,24 @@ "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", diff --git a/src/lib/runners/wenx.json b/src/lib/runners/wenx.json index 9dc98e8c7..9fdc31d8c 100644 --- a/src/lib/runners/wenx.json +++ b/src/lib/runners/wenx.json @@ -15,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29,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": { @@ -48,7 +51,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -63,7 +67,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -75,7 +80,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -86,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": { @@ -105,7 +114,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -117,7 +127,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -129,7 +140,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -140,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", @@ -162,23 +178,28 @@ 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", diff --git a/src/lib/runners/weoz.json b/src/lib/runners/weoz.json index d0f54282c..07b8d1e10 100644 --- a/src/lib/runners/weoz.json +++ b/src/lib/runners/weoz.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "o", @@ -22,9 +23,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/wgby.json b/src/lib/runners/wgby.json index 4c25b65d6..33372980a 100644 --- a/src/lib/runners/wgby.json +++ b/src/lib/runners/wgby.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -58,7 +61,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -70,7 +74,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -82,7 +87,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -112,7 +119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -126,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", @@ -147,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": { @@ -176,7 +193,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -191,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -203,7 +222,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -214,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": { @@ -233,7 +256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -245,7 +269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -257,7 +282,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -268,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", @@ -290,29 +320,36 @@ 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", diff --git a/src/lib/runners/wjwu.json b/src/lib/runners/wjwu.json index fec8ba696..8105dd3f2 100644 --- a/src/lib/runners/wjwu.json +++ b/src/lib/runners/wjwu.json @@ -18,7 +18,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32,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", @@ -49,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", @@ -67,11 +72,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/wopl.json b/src/lib/runners/wopl.json index 088d7f7f4..8ec99ba31 100644 --- a/src/lib/runners/wopl.json +++ b/src/lib/runners/wopl.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -52,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", @@ -69,15 +74,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 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/wqml.json b/src/lib/runners/wqml.json index a3b8c9b99..567552df9 100644 --- a/src/lib/runners/wqml.json +++ b/src/lib/runners/wqml.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", diff --git a/src/lib/runners/wtup.json b/src/lib/runners/wtup.json index 335915598..ca86d1ddc 100644 --- a/src/lib/runners/wtup.json +++ b/src/lib/runners/wtup.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -52,13 +56,16 @@ "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", diff --git a/src/lib/runners/wunw.json b/src/lib/runners/wunw.json index 02437a0a6..0fd8ca599 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,13 +40,16 @@ "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, @@ -64,7 +69,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -78,7 +84,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -89,13 +96,16 @@ "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, @@ -115,7 +125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -129,7 +140,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -140,13 +152,16 @@ "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, @@ -167,7 +182,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -181,7 +197,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -192,13 +209,16 @@ "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, @@ -218,7 +238,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -232,7 +253,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -243,13 +265,16 @@ "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, @@ -266,7 +291,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/wwtl.json b/src/lib/runners/wwtl.json index 3b60858c7..1e21d27eb 100644 --- a/src/lib/runners/wwtl.json +++ b/src/lib/runners/wwtl.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -65,19 +69,24 @@ "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", @@ -97,7 +106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -111,7 +121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -126,7 +137,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -138,7 +150,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -149,19 +162,24 @@ "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", diff --git a/src/lib/runners/wzqv.json b/src/lib/runners/wzqv.json index 34926442d..8f005f6fb 100644 --- a/src/lib/runners/wzqv.json +++ b/src/lib/runners/wzqv.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -55,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", @@ -72,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": { @@ -95,7 +104,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -107,7 +117,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -125,7 +136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -138,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", @@ -155,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", @@ -172,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": { @@ -195,7 +215,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -207,7 +228,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -219,7 +241,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -231,7 +254,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -245,7 +269,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -261,7 +286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -274,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", @@ -292,31 +320,40 @@ 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", @@ -336,7 +373,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -348,7 +386,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -364,7 +403,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -377,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", @@ -394,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": { @@ -417,7 +463,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -429,7 +476,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -447,7 +495,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -460,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", @@ -477,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", @@ -494,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": { @@ -517,7 +574,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -529,7 +587,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -541,7 +600,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -553,7 +613,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -567,7 +628,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -583,7 +645,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -596,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", @@ -614,31 +679,40 @@ 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", @@ -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,31 +1039,40 @@ 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", @@ -983,7 +1094,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -995,7 +1107,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1011,7 +1124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1024,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", @@ -1041,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": { @@ -1064,7 +1184,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1076,7 +1197,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1094,7 +1216,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1107,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", @@ -1124,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", @@ -1141,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": { @@ -1164,7 +1295,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1176,7 +1308,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1188,7 +1321,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1200,7 +1334,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1214,7 +1349,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1230,7 +1366,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1243,11 +1380,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1262,7 +1401,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1274,7 +1414,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1292,7 +1433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1305,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", @@ -1322,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", @@ -1339,39 +1485,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": 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", @@ -1392,7 +1550,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1404,7 +1563,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1420,7 +1580,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1433,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", @@ -1450,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": { @@ -1473,7 +1640,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1485,7 +1653,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1503,7 +1672,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1516,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", @@ -1533,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", @@ -1550,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": { @@ -1573,7 +1751,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1585,7 +1764,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1597,7 +1777,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1609,7 +1790,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1623,7 +1805,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1639,7 +1822,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1652,11 +1836,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1671,7 +1857,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1683,7 +1870,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1701,7 +1889,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1714,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", @@ -1731,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", @@ -1748,39 +1941,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": 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", @@ -1801,7 +2006,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1813,7 +2019,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1829,7 +2036,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -1842,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", @@ -1859,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": { @@ -1881,7 +2095,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1893,7 +2108,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1905,7 +2121,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1919,7 +2136,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1935,7 +2153,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1948,11 +2167,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1967,7 +2188,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1979,7 +2201,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1997,7 +2220,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2010,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", @@ -2027,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", @@ -2044,33 +2272,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": "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", @@ -2091,7 +2329,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2103,7 +2342,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2119,7 +2359,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2132,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", @@ -2149,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": { @@ -2171,7 +2418,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2183,7 +2431,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2195,7 +2444,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2209,7 +2459,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2225,7 +2476,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2238,11 +2490,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2257,7 +2511,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2269,7 +2524,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2287,7 +2543,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2300,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", @@ -2317,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", @@ -2334,33 +2595,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": "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, @@ -2381,7 +2652,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2393,7 +2665,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2409,7 +2682,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2422,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", @@ -2439,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": { @@ -2461,7 +2741,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2473,7 +2754,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2485,7 +2767,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2499,7 +2782,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2515,7 +2799,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2528,11 +2813,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2547,7 +2834,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2559,7 +2847,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2577,7 +2866,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2590,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", @@ -2607,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", @@ -2624,33 +2918,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": "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, @@ -2672,7 +2976,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2684,7 +2989,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2700,7 +3006,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2713,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", @@ -2730,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": { @@ -2752,7 +3065,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2764,7 +3078,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2776,7 +3091,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2790,7 +3106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2806,7 +3123,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2820,7 +3138,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2832,7 +3151,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2848,7 +3168,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -2861,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", @@ -2878,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": { @@ -2905,7 +3233,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2917,7 +3246,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2935,7 +3265,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2948,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", @@ -2965,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", @@ -2982,33 +3317,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": "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, @@ -3029,7 +3374,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3041,7 +3387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3057,7 +3404,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3070,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", @@ -3087,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": { @@ -3109,7 +3463,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3121,7 +3476,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3133,7 +3489,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3147,7 +3504,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3163,7 +3521,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3177,7 +3536,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3189,7 +3549,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3205,7 +3566,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3218,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", @@ -3235,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": { @@ -3262,7 +3631,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3274,7 +3644,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3292,7 +3663,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3305,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", @@ -3322,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", @@ -3339,33 +3715,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": "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, @@ -3383,7 +3769,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3395,7 +3782,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3409,7 +3797,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3425,7 +3814,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3439,7 +3829,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3451,7 +3842,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3467,7 +3859,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3480,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", @@ -3497,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": { @@ -3524,7 +3924,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3536,7 +3937,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3554,7 +3956,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3567,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", @@ -3584,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", @@ -3601,27 +4008,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 }, - "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, @@ -3639,7 +4054,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3651,7 +4067,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3665,7 +4082,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3681,7 +4099,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3695,7 +4114,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3707,7 +4127,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3723,7 +4144,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3736,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", @@ -3753,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": { @@ -3780,7 +4209,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3792,7 +4222,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3810,7 +4241,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3823,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", @@ -3840,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", @@ -3857,27 +4293,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 }, - "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -3895,7 +4339,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3907,7 +4352,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3921,7 +4367,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3937,7 +4384,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3951,7 +4399,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3963,7 +4412,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3979,7 +4429,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -3992,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", @@ -4009,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": { @@ -4036,7 +4494,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4048,7 +4507,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4066,7 +4526,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4079,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", @@ -4096,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", @@ -4113,27 +4578,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 }, - "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, @@ -4152,7 +4625,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4164,7 +4638,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4178,7 +4653,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4194,7 +4670,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4208,7 +4685,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4220,7 +4698,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4236,7 +4715,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4249,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", @@ -4266,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": { @@ -4293,7 +4780,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4305,7 +4793,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4323,7 +4812,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4337,7 +4827,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4352,7 +4843,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4364,7 +4856,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4380,7 +4873,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4393,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", @@ -4410,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": { @@ -4440,7 +4942,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4455,7 +4958,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4467,7 +4971,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4483,7 +4988,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4496,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", @@ -4513,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": { @@ -4543,7 +5057,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4558,7 +5073,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4570,7 +5086,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4586,7 +5103,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4599,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", @@ -4616,39 +5136,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -4666,7 +5198,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4678,7 +5211,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4692,7 +5226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4708,7 +5243,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4722,7 +5258,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4734,7 +5271,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4750,7 +5288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4763,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", @@ -4780,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": { @@ -4807,7 +5353,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4819,7 +5366,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4837,7 +5385,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4851,7 +5400,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4866,7 +5416,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4878,7 +5429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4894,7 +5446,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -4907,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", @@ -4924,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": { @@ -4954,7 +5515,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4969,7 +5531,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4981,7 +5544,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4997,7 +5561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5010,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", @@ -5027,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": { @@ -5057,7 +5630,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5072,7 +5646,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5084,7 +5659,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5100,7 +5676,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5113,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", @@ -5130,39 +5709,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -5180,7 +5771,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5192,7 +5784,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5206,7 +5799,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5220,7 +5814,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5238,7 +5833,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5252,7 +5848,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5267,7 +5864,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5279,7 +5877,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5295,7 +5894,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5308,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", @@ -5325,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": { @@ -5355,7 +5963,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5370,7 +5979,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5382,7 +5992,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5398,7 +6009,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5411,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", @@ -5428,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": { @@ -5458,7 +6078,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5473,7 +6094,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5485,7 +6107,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5501,7 +6124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5514,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", @@ -5531,33 +6157,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": "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, @@ -5575,7 +6211,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5587,7 +6224,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5601,7 +6239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5615,7 +6254,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5633,7 +6273,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5647,7 +6288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5662,7 +6304,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5674,7 +6317,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5690,7 +6334,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5703,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", @@ -5720,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": { @@ -5750,7 +6403,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5765,7 +6419,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5777,7 +6432,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5793,7 +6449,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5806,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", @@ -5823,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": { @@ -5853,7 +6518,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5868,7 +6534,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5880,7 +6547,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5896,7 +6564,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -5909,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", @@ -5926,33 +6597,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": "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -5970,7 +6651,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5982,7 +6664,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5996,7 +6679,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6010,7 +6694,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6028,7 +6713,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6042,7 +6728,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6057,7 +6744,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6069,7 +6757,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6085,7 +6774,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6098,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", @@ -6115,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": { @@ -6145,7 +6843,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6160,7 +6859,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6172,7 +6872,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6188,7 +6889,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6201,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", @@ -6218,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": { @@ -6248,7 +6958,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6263,7 +6974,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6275,7 +6987,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6291,7 +7004,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6304,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", @@ -6321,33 +7037,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": "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, @@ -6366,7 +7092,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6378,7 +7105,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6392,7 +7120,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6406,7 +7135,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6424,7 +7154,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6438,7 +7169,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6453,7 +7185,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6465,7 +7198,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6481,7 +7215,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6494,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", @@ -6511,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": { @@ -6541,7 +7284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6556,7 +7300,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6568,7 +7313,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6584,7 +7330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6597,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", @@ -6614,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": { @@ -6644,7 +7399,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6659,7 +7415,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6671,7 +7428,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6687,7 +7445,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6700,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", @@ -6717,33 +7478,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": "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -6761,7 +7532,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6773,7 +7545,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6787,7 +7560,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6801,7 +7575,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6819,7 +7594,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6833,7 +7609,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6848,7 +7625,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6860,7 +7638,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6876,7 +7655,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6889,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", @@ -6906,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": { @@ -6936,7 +7724,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6951,7 +7740,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6963,7 +7753,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6979,7 +7770,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -6992,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", @@ -7009,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": { @@ -7039,7 +7839,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7054,7 +7855,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7066,7 +7868,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7082,7 +7885,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7095,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", @@ -7112,33 +7918,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": "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -7156,7 +7972,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7168,7 +7985,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7186,7 +8004,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7200,7 +8019,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7215,7 +8035,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7227,7 +8048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7243,7 +8065,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7256,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", @@ -7273,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": { @@ -7303,7 +8134,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7318,7 +8150,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7330,7 +8163,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7346,7 +8180,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7359,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", @@ -7376,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": { @@ -7406,7 +8249,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7421,7 +8265,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7433,7 +8278,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7449,7 +8295,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7462,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", @@ -7479,27 +8328,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 }, - "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, @@ -7517,7 +8374,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7529,7 +8387,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7547,7 +8406,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7561,7 +8421,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7576,7 +8437,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7588,7 +8450,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7604,7 +8467,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7617,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", @@ -7634,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": { @@ -7664,7 +8536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7679,7 +8552,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7691,7 +8565,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7707,7 +8582,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7720,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", @@ -7737,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": { @@ -7767,7 +8651,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7782,7 +8667,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7794,7 +8680,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7810,7 +8697,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7823,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", @@ -7840,27 +8730,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 }, - "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -7878,7 +8776,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7890,7 +8789,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7908,7 +8808,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7922,7 +8823,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7937,7 +8839,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7949,7 +8852,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7965,7 +8869,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -7978,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", @@ -7995,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": { @@ -8025,7 +8938,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8040,7 +8954,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8052,7 +8967,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8068,7 +8984,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8081,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", @@ -8098,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": { @@ -8128,7 +9053,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8143,7 +9069,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8155,7 +9082,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8171,7 +9099,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8184,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", @@ -8201,27 +9132,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 }, - "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, @@ -8240,7 +9179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8252,7 +9192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8270,7 +9211,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8284,7 +9226,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8299,7 +9242,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8311,7 +9255,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8327,7 +9272,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8340,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", @@ -8357,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": { @@ -8387,7 +9341,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8402,7 +9357,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8414,7 +9370,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8430,7 +9387,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8443,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", @@ -8460,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": { @@ -8490,7 +9456,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8505,7 +9472,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8517,7 +9485,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8533,7 +9502,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8546,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", @@ -8563,27 +9535,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -8601,7 +9581,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8613,7 +9594,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8631,7 +9613,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8645,7 +9628,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8660,7 +9644,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8672,7 +9657,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8688,7 +9674,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8701,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", @@ -8718,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": { @@ -8748,7 +9743,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8763,7 +9759,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8775,7 +9772,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8791,7 +9789,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -8804,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", @@ -8821,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": { @@ -8851,7 +9858,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8866,7 +9874,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8878,7 +9887,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8894,7 +9904,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8907,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", @@ -8924,27 +9937,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -8962,7 +9983,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8974,7 +9996,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8992,7 +10015,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9006,7 +10030,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9021,7 +10046,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9033,7 +10059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9049,7 +10076,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9062,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", @@ -9079,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": { @@ -9109,7 +10145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9124,7 +10161,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9136,7 +10174,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9152,7 +10191,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9165,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", @@ -9182,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": { @@ -9212,7 +10260,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9228,7 +10277,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9241,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", @@ -9258,21 +10310,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 }, "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, @@ -9290,7 +10348,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9302,7 +10361,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9320,7 +10380,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9334,7 +10395,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9349,7 +10411,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9361,7 +10424,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9377,7 +10441,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9390,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", @@ -9407,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": { @@ -9437,7 +10510,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9452,7 +10526,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9464,7 +10539,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9480,7 +10556,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9493,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", @@ -9510,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": { @@ -9540,7 +10625,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9556,7 +10642,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9569,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", @@ -9586,21 +10675,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 }, "state": "showFuncBound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "showFuncBound", "activePriority": 1, @@ -9618,7 +10713,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9630,7 +10726,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9648,7 +10745,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9662,7 +10760,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9677,7 +10776,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9689,7 +10789,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9705,7 +10806,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9718,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", @@ -9735,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": { @@ -9765,7 +10875,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9780,7 +10891,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9792,7 +10904,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9808,7 +10921,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -9821,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", @@ -9838,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": { @@ -9868,7 +10990,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9884,7 +11007,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -9897,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", @@ -9914,21 +11040,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 }, "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, @@ -9947,7 +11079,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9959,7 +11092,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9977,7 +11111,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9991,7 +11126,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10006,7 +11142,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10018,7 +11155,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10034,7 +11172,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10047,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", @@ -10064,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": { @@ -10094,7 +11241,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10109,7 +11257,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10121,7 +11270,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10137,7 +11287,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10150,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", @@ -10167,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": { @@ -10197,7 +11356,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10217,7 +11377,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10231,7 +11392,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10246,7 +11408,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10258,7 +11421,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10274,7 +11438,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10287,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", @@ -10304,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": { @@ -10334,7 +11507,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10349,7 +11523,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10361,7 +11536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10377,7 +11553,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10390,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", @@ -10407,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", @@ -10436,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", @@ -10453,21 +11640,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 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -10485,7 +11678,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10497,7 +11691,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10515,7 +11710,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10529,7 +11725,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10544,7 +11741,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10556,7 +11754,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10572,7 +11771,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10585,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", @@ -10602,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": { @@ -10632,7 +11840,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10647,7 +11856,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10659,7 +11869,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10675,7 +11886,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10688,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", @@ -10705,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": { @@ -10735,7 +11955,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10755,7 +11976,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10769,7 +11991,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10784,7 +12007,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10796,7 +12020,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10812,7 +12037,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10825,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", @@ -10842,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": { @@ -10872,7 +12106,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10887,7 +12122,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10899,7 +12135,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10915,7 +12152,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -10928,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", @@ -10945,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", @@ -10974,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", @@ -10991,21 +12239,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 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -11023,7 +12277,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11035,7 +12290,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11055,7 +12311,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11069,7 +12326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11084,7 +12342,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11096,7 +12355,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11112,7 +12372,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11125,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", @@ -11142,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": { @@ -11172,7 +12441,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11187,7 +12457,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11199,7 +12470,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11215,7 +12487,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11228,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", @@ -11245,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", @@ -11274,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", @@ -11291,15 +12574,19 @@ 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, @@ -11317,7 +12604,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11329,7 +12617,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11349,7 +12638,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11363,7 +12653,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11378,7 +12669,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11390,7 +12682,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11406,7 +12699,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11419,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", @@ -11436,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": { @@ -11466,7 +12768,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11481,7 +12784,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11493,7 +12797,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11509,7 +12814,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11522,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", @@ -11539,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", @@ -11568,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", @@ -11585,15 +12901,19 @@ 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": "showFuncUnbound", "activePriority": 3, @@ -11611,7 +12931,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11623,7 +12944,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11643,7 +12965,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11657,7 +12980,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11672,7 +12996,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11684,7 +13009,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11700,7 +13026,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11713,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", @@ -11730,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": { @@ -11760,7 +13095,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11775,7 +13111,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11787,7 +13124,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11803,7 +13141,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -11816,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", @@ -11833,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", @@ -11862,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", @@ -11879,15 +13228,19 @@ 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, @@ -11906,7 +13259,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11918,7 +13272,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11938,7 +13293,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11952,7 +13308,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11967,7 +13324,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11979,7 +13337,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11995,7 +13354,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -12008,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", @@ -12025,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": { @@ -12055,7 +13423,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12070,7 +13439,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12082,7 +13452,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12098,7 +13469,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12111,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", @@ -12128,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", @@ -12157,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", @@ -12174,15 +13556,19 @@ 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": "betaReducePreviewAfter", "activePriority": 3, @@ -12200,7 +13586,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12212,7 +13599,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12232,7 +13620,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12246,7 +13635,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12261,7 +13651,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12273,7 +13664,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12289,7 +13681,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -12302,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", @@ -12319,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": { @@ -12349,7 +13750,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12364,7 +13766,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12376,7 +13779,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12392,7 +13796,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12405,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", @@ -12422,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", @@ -12451,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", @@ -12468,15 +13883,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 3, @@ -12494,7 +13913,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12506,7 +13926,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12526,7 +13947,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12540,7 +13962,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12555,7 +13978,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12567,7 +13991,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12583,7 +14008,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -12596,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", @@ -12613,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": { @@ -12643,7 +14077,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12659,7 +14094,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12672,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", @@ -12689,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", @@ -12712,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", @@ -12729,15 +14173,19 @@ 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, @@ -12755,7 +14203,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12767,7 +14216,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12787,7 +14237,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12801,7 +14252,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12816,7 +14268,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12828,7 +14281,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12844,7 +14298,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -12857,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", @@ -12874,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": { @@ -12904,7 +14367,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12920,7 +14384,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -12933,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", @@ -12950,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", @@ -12973,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", @@ -12990,15 +14463,19 @@ 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": "showFuncBound", "activePriority": 3, @@ -13016,7 +14493,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13028,7 +14506,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13048,7 +14527,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13062,7 +14542,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13077,7 +14558,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13089,7 +14571,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13105,7 +14588,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13118,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", @@ -13135,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": { @@ -13165,7 +14657,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13181,7 +14674,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -13194,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", @@ -13211,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", @@ -13234,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", @@ -13251,15 +14753,19 @@ 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, @@ -13278,7 +14784,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13290,7 +14797,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13310,7 +14818,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13324,7 +14833,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13339,7 +14849,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13351,7 +14862,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13367,7 +14879,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13380,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", @@ -13397,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": { @@ -13427,7 +14948,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13445,7 +14967,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13459,7 +14982,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13474,7 +14998,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13486,7 +15011,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13502,7 +15028,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13515,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", @@ -13532,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", @@ -13561,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", @@ -13578,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", @@ -13601,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", @@ -13618,15 +15161,19 @@ 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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 3, @@ -13644,7 +15191,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13656,7 +15204,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13676,7 +15225,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13690,7 +15240,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13705,7 +15256,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13717,7 +15269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13733,7 +15286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13746,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", @@ -13763,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": { @@ -13793,7 +15355,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13811,7 +15374,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13825,7 +15389,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13840,7 +15405,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13852,7 +15418,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13868,7 +15435,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -13881,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", @@ -13898,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", @@ -13927,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", @@ -13944,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", @@ -13967,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", @@ -13984,15 +15568,19 @@ 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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 3, @@ -14010,7 +15598,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14022,7 +15611,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14044,7 +15634,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14058,7 +15649,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14073,7 +15665,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14085,7 +15678,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14101,7 +15695,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -14114,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", @@ -14131,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", @@ -14160,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", @@ -14177,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", @@ -14194,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", @@ -14211,15 +15820,19 @@ 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, @@ -14237,7 +15850,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14249,7 +15863,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14271,7 +15886,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14285,7 +15901,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14300,7 +15917,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14312,7 +15930,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14328,7 +15947,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -14341,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", @@ -14358,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", @@ -14387,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", @@ -14404,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", @@ -14421,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", @@ -14438,15 +16072,19 @@ 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": "showFuncUnbound", "activePriority": 5, @@ -14464,7 +16102,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14476,7 +16115,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14498,7 +16138,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14512,7 +16153,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14527,7 +16169,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14539,7 +16182,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14555,7 +16199,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "e", @@ -14568,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", @@ -14585,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", @@ -14614,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", @@ -14631,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", @@ -14648,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", @@ -14665,15 +16324,19 @@ 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, @@ -14692,7 +16355,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14704,7 +16368,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14726,7 +16391,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14740,7 +16406,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14755,7 +16422,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14767,7 +16435,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14783,7 +16452,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -14796,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", @@ -14813,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", @@ -14842,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", @@ -14859,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", @@ -14876,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", @@ -14893,15 +16577,19 @@ 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": "betaReducePreviewAfter", "activePriority": 5, @@ -14919,7 +16607,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14931,7 +16620,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14953,7 +16643,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14967,7 +16658,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14982,7 +16674,8 @@ 6 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14994,7 +16687,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15010,7 +16704,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15023,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", @@ -15040,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", @@ -15069,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", @@ -15086,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", @@ -15103,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", @@ -15120,15 +16829,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 5, @@ -15146,7 +16859,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15158,7 +16872,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15180,7 +16895,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15194,7 +16910,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15210,7 +16927,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15223,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", @@ -15240,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", @@ -15263,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", @@ -15280,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", @@ -15297,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", @@ -15314,15 +17044,19 @@ 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, @@ -15340,7 +17074,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15352,7 +17087,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15374,7 +17110,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15388,7 +17125,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15404,7 +17142,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15417,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", @@ -15434,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", @@ -15457,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", @@ -15474,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", @@ -15491,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", @@ -15508,15 +17259,19 @@ 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": "showFuncBound", "activePriority": 5, @@ -15534,7 +17289,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15546,7 +17302,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15568,7 +17325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15582,7 +17340,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15598,7 +17357,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15611,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", @@ -15628,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", @@ -15651,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", @@ -15668,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", @@ -15685,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", @@ -15702,15 +17474,19 @@ 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, @@ -15729,7 +17505,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15741,7 +17518,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15763,7 +17541,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15777,7 +17556,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15793,7 +17573,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15806,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", @@ -15823,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", @@ -15846,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", @@ -15863,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", @@ -15880,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", @@ -15897,15 +17690,19 @@ 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": "betaReducePreviewAfter", "activePriority": 5, @@ -15923,7 +17720,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15935,7 +17733,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15957,7 +17756,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15971,7 +17771,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15987,7 +17788,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -16000,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", @@ -16017,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", @@ -16040,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", @@ -16057,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", @@ -16074,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", @@ -16091,15 +17905,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 5, @@ -16117,7 +17935,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16129,7 +17948,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16153,7 +17973,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -16166,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", @@ -16183,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", @@ -16200,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", @@ -16217,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", @@ -16234,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", @@ -16251,15 +18082,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 }, "previouslyChangedExpressionState": "default", "activePriority": 5, diff --git a/src/lib/runners/xbki.json b/src/lib/runners/xbki.json index 2dce8f598..2209b6094 100644 --- a/src/lib/runners/xbki.json +++ b/src/lib/runners/xbki.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -59,7 +62,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -73,11 +77,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -91,7 +97,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -112,7 +119,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -126,11 +134,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -143,11 +153,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "f", @@ -160,16 +172,21 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -184,7 +201,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -199,7 +217,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -215,7 +234,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -228,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", @@ -245,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": { @@ -265,7 +290,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -281,7 +307,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -294,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", @@ -311,27 +340,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 14, "containerState": "ready", @@ -351,7 +387,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -366,7 +403,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -378,7 +416,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -396,7 +435,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -410,11 +450,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -428,7 +470,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -449,7 +492,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -463,11 +507,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -480,11 +526,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "f", @@ -497,16 +545,21 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "func": { "arg": { @@ -521,7 +574,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -536,7 +590,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -552,7 +607,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -565,11 +621,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -582,13 +640,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": { @@ -602,7 +663,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -618,7 +680,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -631,11 +694,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -648,27 +713,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 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 14, "containerState": "stepped", @@ -689,7 +761,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -704,7 +777,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -720,7 +794,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -733,11 +808,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -751,7 +828,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -763,7 +841,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -781,7 +860,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -795,11 +875,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -813,7 +895,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -834,7 +917,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -848,11 +932,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -865,11 +951,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "f", @@ -882,22 +970,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -912,7 +1007,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -928,7 +1024,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -941,11 +1038,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -959,7 +1058,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -971,7 +1071,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -989,7 +1090,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1003,11 +1105,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1021,7 +1125,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -1042,7 +1147,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1056,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", @@ -1073,11 +1181,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "f", @@ -1090,30 +1200,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": 19, "containerState": "ready", @@ -1134,7 +1253,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1149,7 +1269,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1165,7 +1286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1178,11 +1300,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1196,7 +1320,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1208,7 +1333,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1226,7 +1352,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1240,11 +1367,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1258,7 +1387,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -1279,7 +1409,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1293,11 +1424,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -1310,11 +1443,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "f", @@ -1327,22 +1462,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -1357,7 +1499,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1373,7 +1516,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1386,11 +1530,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1404,7 +1550,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1416,7 +1563,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1434,7 +1582,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1448,11 +1597,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1466,7 +1617,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -1487,7 +1639,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1501,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", @@ -1518,11 +1673,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "f", @@ -1535,30 +1692,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 19, "containerState": "stepped", @@ -1579,7 +1745,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1596,7 +1763,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1612,7 +1780,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1625,11 +1794,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1643,7 +1814,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1655,7 +1827,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1673,7 +1846,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1687,11 +1861,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1705,7 +1881,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -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": "c", @@ -1757,11 +1937,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -1774,22 +1956,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -1803,7 +1992,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1819,7 +2009,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -1832,11 +2023,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1850,7 +2043,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1862,7 +2056,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -1880,7 +2075,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1894,11 +2090,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -1912,7 +2110,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -1933,7 +2132,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -1947,11 +2147,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -1964,11 +2166,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -1981,26 +2185,34 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -2015,7 +2227,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2027,7 +2240,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2045,7 +2259,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2059,11 +2274,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2077,7 +2294,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -2098,7 +2316,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2112,11 +2331,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2129,11 +2350,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "f", @@ -2146,24 +2369,31 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": 26, "containerState": "ready", @@ -2184,7 +2414,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2201,7 +2432,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2217,7 +2449,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2230,11 +2463,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2248,7 +2483,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2260,7 +2496,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2278,7 +2515,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2292,11 +2530,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2310,7 +2550,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -2331,7 +2572,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2345,11 +2587,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2362,11 +2606,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -2379,22 +2625,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -2408,7 +2661,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2424,7 +2678,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2437,11 +2692,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2455,7 +2712,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2467,7 +2725,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2485,7 +2744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2499,11 +2759,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2517,7 +2779,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -2538,7 +2801,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2552,11 +2816,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -2569,11 +2835,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -2586,26 +2854,34 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -2620,7 +2896,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2632,7 +2909,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2650,7 +2928,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2664,11 +2943,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2682,7 +2963,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -2703,7 +2985,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2717,11 +3000,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -2734,11 +3019,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "f", @@ -2751,24 +3038,31 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 26, "containerState": "stepped", @@ -2789,7 +3083,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2803,7 +3098,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2821,7 +3117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2835,11 +3132,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -2853,7 +3152,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -2874,7 +3174,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2888,11 +3189,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2907,7 +3210,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2923,7 +3227,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -2936,11 +3241,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2954,7 +3261,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2966,7 +3274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -2984,7 +3293,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -2998,11 +3308,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3016,7 +3328,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -3037,7 +3350,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3051,11 +3365,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -3068,11 +3384,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -3085,22 +3403,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -3115,7 +3440,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3131,7 +3457,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3144,11 +3471,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3162,7 +3491,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3174,7 +3504,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3192,7 +3523,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3206,11 +3538,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3224,7 +3558,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -3245,7 +3580,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3259,11 +3595,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -3276,11 +3614,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -3293,30 +3633,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "f", @@ -3329,18 +3678,23 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "numLeafNodes": 25, "containerState": "ready", @@ -3361,7 +3715,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3375,7 +3730,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3393,7 +3749,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3407,11 +3764,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3425,7 +3784,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -3446,7 +3806,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3460,11 +3821,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3479,7 +3842,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3495,7 +3859,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3508,11 +3873,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3526,7 +3893,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3538,7 +3906,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3556,7 +3925,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3570,11 +3940,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3588,7 +3960,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -3609,7 +3982,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3623,11 +3997,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -3640,11 +4016,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -3657,22 +4035,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -3687,7 +4072,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3703,7 +4089,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -3716,11 +4103,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3734,7 +4123,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3746,7 +4136,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -3764,7 +4155,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3778,11 +4170,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3796,7 +4190,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -3817,7 +4212,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3831,11 +4227,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -3848,11 +4246,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -3865,30 +4265,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "f", @@ -3901,18 +4310,23 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -3937,7 +4351,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -3951,11 +4366,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -3969,7 +4386,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -3991,7 +4409,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4005,11 +4424,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4024,7 +4445,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4040,7 +4462,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4053,11 +4476,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4071,7 +4496,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4083,7 +4509,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4101,7 +4528,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4115,11 +4543,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4133,7 +4563,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -4154,7 +4585,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4168,11 +4600,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4185,11 +4619,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -4202,22 +4638,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -4232,7 +4675,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4248,7 +4692,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4261,11 +4706,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4279,7 +4726,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4291,7 +4739,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4309,7 +4758,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4323,11 +4773,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4341,7 +4793,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -4362,7 +4815,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4376,11 +4830,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4393,11 +4849,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -4410,30 +4868,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "shorthandNumber", @@ -4447,12 +4914,15 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -4477,7 +4947,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4491,11 +4962,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4509,7 +4982,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -4531,7 +5005,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4545,11 +5020,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4564,7 +5041,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4580,7 +5058,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4593,11 +5072,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4611,7 +5092,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4623,7 +5105,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4641,7 +5124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4655,11 +5139,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4673,7 +5159,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -4694,7 +5181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4708,11 +5196,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4725,11 +5215,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -4742,22 +5234,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -4772,7 +5271,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4788,7 +5288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -4801,11 +5302,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4819,7 +5322,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4831,7 +5335,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -4849,7 +5354,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4863,11 +5369,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -4881,7 +5389,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -4902,7 +5411,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -4916,11 +5426,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -4933,11 +5445,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -4950,30 +5464,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "shorthandNumber", @@ -4987,12 +5510,15 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -5014,7 +5540,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5028,7 +5555,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -5050,7 +5578,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5064,11 +5593,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5083,7 +5614,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5099,7 +5631,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5112,11 +5645,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5130,7 +5665,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5142,7 +5678,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5160,7 +5697,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5174,11 +5712,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5192,7 +5732,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -5213,7 +5754,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5227,11 +5769,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5244,11 +5788,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -5261,22 +5807,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -5291,7 +5844,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5307,7 +5861,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5320,11 +5875,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5338,7 +5895,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5350,7 +5908,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5368,7 +5927,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5382,11 +5942,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5400,7 +5962,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -5421,7 +5984,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5435,11 +5999,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5452,11 +6018,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -5469,30 +6037,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "shorthandNumber", @@ -5506,12 +6083,15 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -5533,7 +6113,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5547,7 +6128,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -5569,7 +6151,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5583,11 +6166,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5602,7 +6187,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5618,7 +6204,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5631,11 +6218,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5649,7 +6238,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5661,7 +6251,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5679,7 +6270,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5693,11 +6285,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5711,7 +6305,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -5732,7 +6327,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5746,11 +6342,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5763,11 +6361,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -5780,22 +6380,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -5810,7 +6417,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5826,7 +6434,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -5839,11 +6448,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5857,7 +6468,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5869,7 +6481,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -5887,7 +6500,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5901,11 +6515,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -5919,7 +6535,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -5940,7 +6557,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -5954,11 +6572,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -5971,11 +6591,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -5988,30 +6610,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "shorthandNumber", @@ -6025,12 +6656,15 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, @@ -6057,7 +6691,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6071,11 +6706,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6090,7 +6727,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6106,7 +6744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6119,11 +6758,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6137,7 +6778,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6149,7 +6791,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6167,7 +6810,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6181,11 +6825,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6199,7 +6845,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -6220,7 +6867,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6234,11 +6882,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -6251,11 +6901,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -6268,22 +6920,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -6298,7 +6957,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6314,7 +6974,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6327,11 +6988,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6345,7 +7008,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6357,7 +7021,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6375,7 +7040,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6389,11 +7055,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6407,7 +7075,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -6428,7 +7097,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6442,11 +7112,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -6459,11 +7131,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -6476,30 +7150,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "shorthandNumber", @@ -6513,10 +7196,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -6543,7 +7228,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6557,11 +7243,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6576,7 +7264,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6592,7 +7281,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6605,11 +7295,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6623,7 +7315,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6635,7 +7328,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6653,7 +7347,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6667,11 +7362,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6685,7 +7382,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -6706,7 +7404,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6720,11 +7419,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -6737,11 +7438,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -6754,22 +7457,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -6784,7 +7494,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6800,7 +7511,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -6813,11 +7525,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6831,7 +7545,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6843,7 +7558,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -6861,7 +7577,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6875,11 +7592,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -6893,7 +7612,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -6914,7 +7634,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -6928,11 +7649,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -6945,11 +7668,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -6962,30 +7687,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -6999,10 +7733,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -7029,7 +7765,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7043,11 +7780,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7064,7 +7803,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7080,7 +7820,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7093,11 +7834,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7111,7 +7854,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7123,7 +7867,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7141,7 +7886,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7155,11 +7901,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7173,7 +7921,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -7194,7 +7943,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7208,11 +7958,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7225,11 +7977,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -7242,22 +7996,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -7271,7 +8032,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7287,7 +8049,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7300,11 +8063,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7318,7 +8083,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7330,7 +8096,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7348,7 +8115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7362,11 +8130,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7380,7 +8150,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -7401,7 +8172,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7415,11 +8187,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7432,11 +8206,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -7449,26 +8225,34 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -7483,7 +8267,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7495,7 +8280,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7513,7 +8299,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7527,11 +8314,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7545,7 +8334,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -7566,7 +8356,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7580,11 +8371,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -7597,11 +8390,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -7614,24 +8409,31 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "shorthandNumber", @@ -7645,10 +8447,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -7675,7 +8479,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7689,11 +8494,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7710,7 +8517,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7726,7 +8534,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7739,11 +8548,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7757,7 +8568,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7769,7 +8581,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7787,7 +8600,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7801,11 +8615,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -7819,7 +8635,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -7840,7 +8657,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -7854,11 +8672,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -7871,11 +8691,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -7888,22 +8710,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -7917,7 +8746,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7933,7 +8763,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -7946,11 +8777,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7964,7 +8797,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7976,7 +8810,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -7994,7 +8829,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8008,11 +8844,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8026,7 +8864,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -8047,7 +8886,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8061,11 +8901,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8078,11 +8920,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -8095,26 +8939,34 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -8129,7 +8981,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8141,7 +8994,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8159,7 +9013,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8173,11 +9028,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8191,7 +9048,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -8212,7 +9070,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8226,11 +9085,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -8243,11 +9104,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -8260,24 +9123,31 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -8291,10 +9161,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -8321,7 +9193,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8335,11 +9208,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8353,7 +9228,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8371,7 +9247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8385,11 +9262,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8403,7 +9282,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -8424,7 +9304,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8438,11 +9319,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8457,7 +9340,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8473,7 +9357,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8486,11 +9371,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8504,7 +9391,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8516,7 +9404,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8534,7 +9423,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8548,11 +9438,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8566,7 +9458,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -8587,7 +9480,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8601,11 +9495,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8618,11 +9514,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -8635,22 +9533,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -8665,7 +9570,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8681,7 +9587,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -8694,11 +9601,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8712,7 +9621,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8724,7 +9634,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8742,7 +9653,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8756,11 +9668,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -8774,7 +9688,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -8795,7 +9710,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8809,11 +9725,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -8826,11 +9744,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -8843,30 +9763,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "d", @@ -8879,18 +9808,23 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "second": { "name": "shorthandNumber", @@ -8904,10 +9838,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -8934,7 +9870,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8948,11 +9885,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8966,7 +9905,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -8984,7 +9924,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -8998,11 +9939,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9016,7 +9959,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -9037,7 +9981,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9051,11 +9996,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9070,7 +10017,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9086,7 +10034,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9099,11 +10048,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9117,7 +10068,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9129,7 +10081,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9147,7 +10100,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9161,11 +10115,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9179,7 +10135,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -9200,7 +10157,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9214,11 +10172,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9231,11 +10191,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -9248,22 +10210,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -9278,7 +10247,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9294,7 +10264,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9307,11 +10278,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9325,7 +10298,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9337,7 +10311,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9355,7 +10330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9369,11 +10345,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9387,7 +10365,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -9408,7 +10387,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9422,11 +10402,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9439,11 +10421,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -9456,30 +10440,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "d", @@ -9492,18 +10485,23 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "second": { "name": "shorthandNumber", @@ -9517,10 +10515,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -9550,7 +10550,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9564,11 +10565,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9582,11 +10585,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9600,7 +10605,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -9625,7 +10631,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9639,11 +10646,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9657,11 +10666,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9676,7 +10687,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9692,7 +10704,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9705,11 +10718,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9723,7 +10738,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9735,7 +10751,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9753,7 +10770,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9767,11 +10785,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9785,7 +10805,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -9806,7 +10827,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9820,11 +10842,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -9837,11 +10861,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -9854,22 +10880,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -9884,7 +10917,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9900,7 +10934,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -9913,11 +10948,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9931,7 +10968,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9943,7 +10981,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -9961,7 +11000,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -9975,11 +11015,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -9993,7 +11035,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -10014,7 +11057,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10028,11 +11072,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -10045,11 +11091,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -10062,30 +11110,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -10100,7 +11157,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10115,16 +11173,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -10138,10 +11200,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -10171,7 +11235,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10185,11 +11250,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10203,11 +11270,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10221,7 +11290,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -10246,7 +11316,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10260,11 +11331,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10278,11 +11351,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10297,7 +11372,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10313,7 +11389,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10326,11 +11403,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10344,7 +11423,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10356,7 +11436,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10374,7 +11455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10388,11 +11470,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10406,7 +11490,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -10427,7 +11512,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10441,11 +11527,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -10458,11 +11546,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -10475,22 +11565,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -10505,7 +11602,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10521,7 +11619,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10534,11 +11633,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10552,7 +11653,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10564,7 +11666,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10582,7 +11685,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10596,11 +11700,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10614,7 +11720,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -10635,7 +11742,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10649,11 +11757,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -10666,11 +11776,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -10683,30 +11795,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -10721,7 +11842,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10736,16 +11858,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -10759,10 +11885,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 2, @@ -10790,7 +11918,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10804,11 +11933,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -10822,7 +11953,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -10847,7 +11979,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10861,11 +11994,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10879,11 +12014,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10898,7 +12035,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10914,7 +12052,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -10927,11 +12066,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10945,7 +12086,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10957,7 +12099,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -10975,7 +12118,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -10989,11 +12133,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11007,7 +12153,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -11028,7 +12175,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11042,11 +12190,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -11059,11 +12209,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -11076,22 +12228,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -11106,7 +12265,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11122,7 +12282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11135,11 +12296,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11153,7 +12316,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11165,7 +12329,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11183,7 +12348,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11197,11 +12363,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11215,7 +12383,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -11236,7 +12405,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11250,11 +12420,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -11267,11 +12439,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -11284,30 +12458,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -11322,7 +12505,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11337,16 +12521,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -11360,10 +12548,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 2, @@ -11391,7 +12581,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11405,11 +12596,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11423,7 +12616,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -11448,7 +12642,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11462,11 +12657,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11480,11 +12677,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11499,7 +12698,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11515,7 +12715,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11528,11 +12729,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11546,7 +12749,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11558,7 +12762,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11576,7 +12781,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11590,11 +12796,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11608,7 +12816,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -11629,7 +12838,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11643,11 +12853,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -11660,11 +12872,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -11677,22 +12891,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -11707,7 +12928,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11723,7 +12945,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -11736,11 +12959,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11754,7 +12979,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11766,7 +12992,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -11784,7 +13011,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11798,11 +13026,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -11816,7 +13046,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -11837,7 +13068,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11851,11 +13083,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -11868,11 +13102,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -11885,30 +13121,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -11923,7 +13168,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -11938,16 +13184,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -11961,10 +13211,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -11989,7 +13241,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12003,7 +13256,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -12028,7 +13282,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12042,11 +13297,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12060,11 +13317,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12079,7 +13338,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12095,7 +13355,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12108,11 +13369,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12126,7 +13389,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12138,7 +13402,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12156,7 +13421,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12170,11 +13436,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12188,7 +13456,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -12209,7 +13478,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12223,11 +13493,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -12240,11 +13512,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -12257,22 +13531,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -12287,7 +13568,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12303,7 +13585,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12316,11 +13599,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12334,7 +13619,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12346,7 +13632,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12364,7 +13651,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12378,11 +13666,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12396,7 +13686,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -12417,7 +13708,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12431,11 +13723,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -12448,11 +13742,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -12465,30 +13761,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -12503,7 +13808,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12518,16 +13824,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -12541,10 +13851,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -12569,7 +13881,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12583,7 +13896,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -12608,7 +13922,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12622,11 +13937,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12640,11 +13957,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12659,7 +13978,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12675,7 +13995,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12688,11 +14009,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12706,7 +14029,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12718,7 +14042,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12736,7 +14061,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12750,11 +14076,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12768,7 +14096,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -12789,7 +14118,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12803,11 +14133,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -12820,11 +14152,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -12837,22 +14171,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -12867,7 +14208,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12883,7 +14225,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -12896,11 +14239,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12914,7 +14259,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12926,7 +14272,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -12944,7 +14291,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -12958,11 +14306,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -12976,7 +14326,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -12997,7 +14348,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13011,11 +14363,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -13028,11 +14382,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -13045,30 +14401,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -13083,7 +14448,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13098,16 +14464,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -13121,10 +14491,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, @@ -13157,7 +14529,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13171,11 +14544,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13189,11 +14564,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13208,7 +14585,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13224,7 +14602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13237,11 +14616,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13255,7 +14636,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13267,7 +14649,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13285,7 +14668,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13299,11 +14683,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13317,7 +14703,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -13338,7 +14725,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13352,11 +14740,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -13369,11 +14759,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -13386,22 +14778,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -13416,7 +14815,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13432,7 +14832,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13445,11 +14846,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13463,7 +14866,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13475,7 +14879,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13493,7 +14898,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13507,11 +14913,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13525,7 +14933,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -13546,7 +14955,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13560,11 +14970,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -13577,11 +14989,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -13594,30 +15008,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -13632,7 +15055,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13647,14 +15071,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -13668,10 +15095,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -13704,7 +15133,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13718,11 +15148,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13736,11 +15168,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13755,7 +15189,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13771,7 +15206,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13784,11 +15220,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13802,7 +15240,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13814,7 +15253,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -13832,7 +15272,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13846,11 +15287,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -13864,7 +15307,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -13885,7 +15329,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -13899,11 +15344,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -13916,11 +15363,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -13933,22 +15382,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -13963,7 +15419,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13979,7 +15436,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -13992,11 +15450,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14010,7 +15470,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14022,7 +15483,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14040,7 +15502,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14054,11 +15517,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14072,7 +15537,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -14093,7 +15559,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14107,11 +15574,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -14124,11 +15593,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -14141,30 +15612,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -14179,7 +15659,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14194,14 +15675,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -14215,10 +15699,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -14251,7 +15737,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14265,11 +15752,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14283,11 +15772,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14304,7 +15795,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14320,7 +15812,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14333,11 +15826,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14351,7 +15846,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14363,7 +15859,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14381,7 +15878,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14395,11 +15893,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14413,7 +15913,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -14434,7 +15935,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14448,11 +15950,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -14465,11 +15969,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -14482,22 +15988,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -14511,7 +16024,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14527,7 +16041,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -14540,11 +16055,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14558,7 +16075,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14570,7 +16088,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14588,7 +16107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14602,11 +16122,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14620,7 +16142,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -14641,7 +16164,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14655,11 +16179,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -14672,11 +16198,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -14689,26 +16217,34 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -14723,7 +16259,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14735,7 +16272,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -14753,7 +16291,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14767,11 +16306,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -14785,7 +16326,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -14806,7 +16348,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14820,11 +16363,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -14837,11 +16382,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -14854,24 +16401,31 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -14886,7 +16440,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14901,14 +16456,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -14922,10 +16480,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -14958,7 +16518,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14972,11 +16533,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -14990,11 +16553,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15011,7 +16576,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15027,7 +16593,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15040,11 +16607,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15058,7 +16627,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15070,7 +16640,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15088,7 +16659,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15102,11 +16674,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15120,7 +16694,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -15141,7 +16716,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15155,11 +16731,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15172,11 +16750,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -15189,22 +16769,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -15218,7 +16805,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15234,7 +16822,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15247,11 +16836,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15265,7 +16856,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15277,7 +16869,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15295,7 +16888,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15309,11 +16903,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15327,7 +16923,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -15348,7 +16945,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15362,11 +16960,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15379,11 +16979,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -15396,26 +16998,34 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -15430,7 +17040,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15442,7 +17053,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15460,7 +17072,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15474,11 +17087,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15492,7 +17107,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -15513,7 +17129,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15527,11 +17144,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -15544,11 +17163,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -15561,24 +17182,31 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -15593,7 +17221,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15608,14 +17237,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -15629,10 +17261,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -15665,7 +17299,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15679,11 +17314,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15697,11 +17334,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15715,7 +17354,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15733,7 +17373,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15747,11 +17388,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15765,7 +17408,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -15786,7 +17430,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15800,11 +17445,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15819,7 +17466,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15835,7 +17483,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -15848,11 +17497,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15866,7 +17517,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15878,7 +17530,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -15896,7 +17549,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15910,11 +17564,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -15928,7 +17584,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -15949,7 +17606,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -15963,11 +17621,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -15980,11 +17640,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -15997,22 +17659,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -16027,7 +17696,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16043,7 +17713,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -16056,11 +17727,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16074,7 +17747,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16086,7 +17760,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -16104,7 +17779,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16118,11 +17794,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16136,7 +17814,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -16157,7 +17836,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16171,11 +17851,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -16188,11 +17870,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -16205,30 +17889,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "e", @@ -16241,18 +17934,23 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "second": { "arg": { @@ -16267,7 +17965,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16282,14 +17981,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 4 }, "second": { "name": "shorthandNumber", @@ -16303,10 +18005,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -16339,7 +18043,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16353,11 +18058,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16371,11 +18078,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16389,7 +18098,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -16407,7 +18117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16421,11 +18132,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16439,7 +18152,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -16460,7 +18174,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16474,11 +18189,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16493,7 +18210,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16509,7 +18227,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -16522,11 +18241,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16540,7 +18261,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16552,7 +18274,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -16570,7 +18293,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16584,11 +18308,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16602,7 +18328,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -16623,7 +18350,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16637,11 +18365,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -16654,11 +18384,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -16671,22 +18403,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -16701,7 +18440,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16717,7 +18457,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -16730,11 +18471,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16748,7 +18491,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16760,7 +18504,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -16778,7 +18523,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16792,11 +18538,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -16810,7 +18558,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -16831,7 +18580,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16845,11 +18595,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -16862,11 +18614,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -16879,30 +18633,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "e", @@ -16915,18 +18678,23 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "second": { "arg": { @@ -16941,7 +18709,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -16956,14 +18725,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 4 }, "second": { "name": "shorthandNumber", @@ -16977,10 +18749,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -17015,7 +18789,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17029,11 +18804,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17047,11 +18824,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17065,11 +18844,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17083,7 +18864,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -17111,7 +18893,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17125,11 +18908,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17143,11 +18928,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17161,11 +18948,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17180,7 +18969,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17196,7 +18986,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -17209,11 +19000,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17227,7 +19020,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17239,7 +19033,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -17257,7 +19052,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17271,11 +19067,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17289,7 +19087,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -17310,7 +19109,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17324,11 +19124,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -17341,11 +19143,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -17358,22 +19162,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -17388,7 +19199,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17404,7 +19216,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -17417,11 +19230,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17435,7 +19250,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17447,7 +19263,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -17465,7 +19282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17479,11 +19297,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17497,7 +19317,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -17518,7 +19339,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17532,11 +19354,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -17549,11 +19373,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -17566,30 +19392,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -17606,7 +19441,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17620,11 +19456,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17639,16 +19477,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -17663,7 +19505,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17678,14 +19521,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -17699,10 +19545,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -17737,7 +19585,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17751,11 +19600,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17769,11 +19620,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17787,11 +19640,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -17805,7 +19660,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -17833,7 +19689,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17847,11 +19704,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17865,11 +19724,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17883,11 +19744,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17902,7 +19765,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17918,7 +19782,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -17931,11 +19796,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17949,7 +19816,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17961,7 +19829,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -17979,7 +19848,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -17993,11 +19863,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -18011,7 +19883,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -18032,7 +19905,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18046,11 +19920,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -18063,11 +19939,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -18080,22 +19958,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -18110,7 +19995,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -18126,7 +20012,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -18139,11 +20026,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -18157,7 +20046,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -18169,7 +20059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -18187,7 +20078,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18201,11 +20093,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -18219,7 +20113,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -18240,7 +20135,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18254,11 +20150,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -18271,11 +20169,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -18288,30 +20188,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -18328,7 +20237,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18342,11 +20252,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18361,16 +20273,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -18385,7 +20301,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18400,14 +20317,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -18421,10 +20341,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 3, @@ -18457,7 +20379,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18471,11 +20394,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18489,11 +20414,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -18507,7 +20434,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -18535,7 +20463,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18549,11 +20478,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18567,11 +20498,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18585,11 +20518,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -18604,7 +20539,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -18620,7 +20556,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -18633,11 +20570,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -18651,7 +20590,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -18663,7 +20603,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -18681,7 +20622,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18695,11 +20637,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -18713,7 +20657,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -18734,7 +20679,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18748,11 +20694,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -18765,11 +20713,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -18782,22 +20732,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -18812,7 +20769,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -18828,7 +20786,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -18841,11 +20800,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -18859,7 +20820,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -18871,7 +20833,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -18889,7 +20852,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18903,11 +20867,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -18921,7 +20887,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -18942,7 +20909,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -18956,11 +20924,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -18973,11 +20943,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -18990,30 +20962,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -19030,7 +21011,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19044,11 +21026,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19063,16 +21047,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -19087,7 +21075,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19102,14 +21091,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -19123,10 +21115,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 3, @@ -19159,7 +21153,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19173,11 +21168,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19191,11 +21188,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -19209,7 +21208,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -19237,7 +21237,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19251,11 +21252,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19269,11 +21272,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19287,11 +21292,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -19306,7 +21313,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -19322,7 +21330,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -19335,11 +21344,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -19353,7 +21364,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -19365,7 +21377,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -19383,7 +21396,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19397,11 +21411,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -19415,7 +21431,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -19436,7 +21453,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19450,11 +21468,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -19467,11 +21487,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -19484,22 +21506,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -19514,7 +21543,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -19530,7 +21560,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -19543,11 +21574,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -19561,7 +21594,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -19573,7 +21607,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -19591,7 +21626,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19605,11 +21641,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -19623,7 +21661,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -19644,7 +21683,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19658,11 +21698,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -19675,11 +21717,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -19692,30 +21736,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -19732,7 +21785,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19746,11 +21800,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19765,16 +21821,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -19789,7 +21849,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19804,14 +21865,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -19825,10 +21889,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 2, @@ -19859,7 +21925,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19873,11 +21940,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -19891,7 +21960,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -19919,7 +21989,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19933,11 +22004,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19951,11 +22024,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -19969,11 +22044,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -19988,7 +22065,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -20004,7 +22082,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -20017,11 +22096,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -20035,7 +22116,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -20047,7 +22129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -20065,7 +22148,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20079,11 +22163,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -20097,7 +22183,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -20118,7 +22205,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20132,11 +22220,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -20149,11 +22239,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -20166,22 +22258,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -20196,7 +22295,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -20212,7 +22312,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -20225,11 +22326,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -20243,7 +22346,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -20255,7 +22359,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -20273,7 +22378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20287,11 +22393,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -20305,7 +22413,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -20326,7 +22435,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20340,11 +22450,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -20357,11 +22469,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -20374,30 +22488,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -20414,7 +22537,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20428,11 +22552,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20447,16 +22573,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -20471,7 +22601,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20486,14 +22617,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -20507,10 +22641,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 2, @@ -20541,7 +22677,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20555,11 +22692,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -20573,7 +22712,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -20601,7 +22741,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20615,11 +22756,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20633,11 +22776,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20651,11 +22796,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -20670,7 +22817,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -20686,7 +22834,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -20699,11 +22848,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -20717,7 +22868,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -20729,7 +22881,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -20747,7 +22900,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20761,11 +22915,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -20779,7 +22935,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -20800,7 +22957,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20814,11 +22972,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -20831,11 +22991,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -20848,22 +23010,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -20878,7 +23047,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -20894,7 +23064,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -20907,11 +23078,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -20925,7 +23098,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -20937,7 +23111,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -20955,7 +23130,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -20969,11 +23145,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -20987,7 +23165,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -21008,7 +23187,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21022,11 +23202,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -21039,11 +23221,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -21056,30 +23240,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -21096,7 +23289,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21110,11 +23304,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21129,16 +23325,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -21153,7 +23353,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21168,14 +23369,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -21189,10 +23393,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -21220,7 +23426,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -21234,7 +23441,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -21262,7 +23470,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21276,11 +23485,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21294,11 +23505,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21312,11 +23525,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -21331,7 +23546,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -21347,7 +23563,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -21360,11 +23577,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -21378,7 +23597,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -21390,7 +23610,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -21408,7 +23629,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21422,11 +23644,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -21440,7 +23664,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -21461,7 +23686,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21475,11 +23701,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -21492,11 +23720,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -21509,22 +23739,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -21539,7 +23776,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -21555,7 +23793,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -21568,11 +23807,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -21586,7 +23827,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -21598,7 +23840,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -21616,7 +23859,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21630,11 +23874,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -21648,7 +23894,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -21669,7 +23916,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21683,11 +23931,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -21700,11 +23950,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -21717,30 +23969,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -21757,7 +24018,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21771,11 +24033,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21790,16 +24054,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -21814,7 +24082,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21829,14 +24098,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -21850,10 +24122,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -21881,7 +24155,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -21895,7 +24170,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -21923,7 +24199,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21937,11 +24214,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21955,11 +24234,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -21973,11 +24254,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -21992,7 +24275,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -22008,7 +24292,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -22021,11 +24306,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -22039,7 +24326,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -22051,7 +24339,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -22069,7 +24358,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22083,11 +24373,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -22101,7 +24393,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -22122,7 +24415,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22136,11 +24430,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -22153,11 +24449,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -22170,22 +24468,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -22200,7 +24505,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -22216,7 +24522,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -22229,11 +24536,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -22247,7 +24556,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -22259,7 +24569,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -22277,7 +24588,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22291,11 +24603,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -22309,7 +24623,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -22330,7 +24645,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22344,11 +24660,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -22361,11 +24679,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -22378,30 +24698,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -22418,7 +24747,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22432,11 +24762,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22451,16 +24783,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -22475,7 +24811,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22490,14 +24827,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -22511,10 +24851,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, @@ -22553,7 +24895,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22567,11 +24910,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22585,11 +24930,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22603,11 +24950,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -22622,7 +24971,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -22638,7 +24988,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -22651,11 +25002,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -22669,7 +25022,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -22681,7 +25035,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -22699,7 +25054,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22713,11 +25069,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -22731,7 +25089,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -22752,7 +25111,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22766,11 +25126,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -22783,11 +25145,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -22800,22 +25164,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -22830,7 +25201,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -22846,7 +25218,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -22859,11 +25232,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -22877,7 +25252,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -22889,7 +25265,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -22907,7 +25284,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22921,11 +25299,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -22939,7 +25319,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -22960,7 +25341,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -22974,11 +25356,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -22991,11 +25375,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -23008,30 +25394,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -23048,7 +25443,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23062,11 +25458,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23081,14 +25479,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -23103,7 +25504,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23118,14 +25520,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -23139,10 +25544,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -23181,7 +25588,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23195,11 +25603,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23213,11 +25623,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23231,11 +25643,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -23250,7 +25664,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23266,7 +25681,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -23279,11 +25695,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -23297,7 +25715,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23309,7 +25728,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -23327,7 +25747,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23341,11 +25762,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -23359,7 +25782,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -23380,7 +25804,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23394,11 +25819,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -23411,11 +25838,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -23428,22 +25857,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -23458,7 +25894,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23474,7 +25911,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -23487,11 +25925,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -23505,7 +25945,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23517,7 +25958,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -23535,7 +25977,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23549,11 +25992,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -23567,7 +26012,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -23588,7 +26034,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23602,11 +26049,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -23619,11 +26068,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -23636,30 +26087,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -23676,7 +26136,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23690,11 +26151,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23709,14 +26172,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -23731,7 +26197,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23746,14 +26213,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -23767,10 +26237,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -23809,7 +26281,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23823,11 +26296,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23841,11 +26316,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23859,11 +26336,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -23880,7 +26359,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23896,7 +26376,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -23909,11 +26390,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -23927,7 +26410,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23939,7 +26423,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -23957,7 +26442,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -23971,11 +26457,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -23989,7 +26477,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -24010,7 +26499,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24024,11 +26514,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -24041,11 +26533,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -24058,22 +26552,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -24087,7 +26588,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -24103,7 +26605,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -24116,11 +26619,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -24134,7 +26639,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -24146,7 +26652,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -24164,7 +26671,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24178,11 +26686,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -24196,7 +26706,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -24217,7 +26728,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24231,11 +26743,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -24248,11 +26762,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -24265,26 +26781,34 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -24299,7 +26823,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -24311,7 +26836,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -24329,7 +26855,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24343,11 +26870,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -24361,7 +26890,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -24382,7 +26912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24396,11 +26927,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -24413,11 +26946,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -24430,24 +26965,31 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -24464,7 +27006,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24478,11 +27021,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24497,14 +27042,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -24519,7 +27067,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24534,14 +27083,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -24555,10 +27107,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -24597,7 +27151,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24611,11 +27166,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24629,11 +27186,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24647,11 +27206,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -24668,7 +27229,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -24684,7 +27246,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -24697,11 +27260,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -24715,7 +27280,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -24727,7 +27293,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -24745,7 +27312,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24759,11 +27327,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -24777,7 +27347,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -24798,7 +27369,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24812,11 +27384,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -24829,11 +27403,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -24846,22 +27422,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -24875,7 +27458,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -24891,7 +27475,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -24904,11 +27489,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -24922,7 +27509,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -24934,7 +27522,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -24952,7 +27541,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -24966,11 +27556,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -24984,7 +27576,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -25005,7 +27598,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25019,11 +27613,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -25036,11 +27632,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -25053,26 +27651,34 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -25087,7 +27693,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25099,7 +27706,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -25117,7 +27725,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25131,11 +27740,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -25149,7 +27760,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -25170,7 +27782,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25184,11 +27797,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -25201,11 +27816,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "d", @@ -25218,24 +27835,31 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -25252,7 +27876,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25266,11 +27891,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25285,14 +27912,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -25307,7 +27937,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25322,14 +27953,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -25343,10 +27977,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -25385,7 +28021,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25399,11 +28036,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25417,11 +28056,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25435,11 +28076,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -25453,7 +28096,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -25471,7 +28115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25485,11 +28130,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -25503,7 +28150,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -25524,7 +28172,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25538,11 +28187,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -25557,7 +28208,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25573,7 +28225,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -25586,11 +28239,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -25604,7 +28259,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25616,7 +28272,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -25634,7 +28291,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25648,11 +28306,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -25666,7 +28326,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -25687,7 +28348,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25701,11 +28363,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -25718,11 +28382,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -25735,22 +28401,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -25765,7 +28438,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25781,7 +28455,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -25794,11 +28469,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -25812,7 +28489,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -25824,7 +28502,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -25842,7 +28521,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25856,11 +28536,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -25874,7 +28556,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -25895,7 +28578,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -25909,11 +28593,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -25926,11 +28612,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -25943,30 +28631,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "d", @@ -25979,18 +28676,23 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "second": { "arg": { @@ -26007,7 +28709,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26021,11 +28724,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26040,14 +28745,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 4 }, "second": { "arg": { @@ -26062,7 +28770,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26077,14 +28786,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 4 }, "second": { "name": "shorthandNumber", @@ -26098,10 +28810,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -26140,7 +28854,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26154,11 +28869,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26172,11 +28889,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26190,11 +28909,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -26208,7 +28929,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -26226,7 +28948,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26240,11 +28963,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -26258,7 +28983,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -26279,7 +29005,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26293,11 +29020,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -26312,7 +29041,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26328,7 +29058,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -26341,11 +29072,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -26359,7 +29092,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26371,7 +29105,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -26389,7 +29124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26403,11 +29139,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -26421,7 +29159,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -26442,7 +29181,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26456,11 +29196,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -26473,11 +29215,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -26490,22 +29234,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -26520,7 +29271,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26536,7 +29288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -26549,11 +29302,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -26567,7 +29322,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26579,7 +29335,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -26597,7 +29354,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26611,11 +29369,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -26629,7 +29389,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -26650,7 +29411,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26664,11 +29426,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -26681,11 +29445,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -26698,30 +29464,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "name": "d", @@ -26734,18 +29509,23 @@ 6 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 4 }, "second": { "arg": { @@ -26762,7 +29542,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26776,11 +29557,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26795,14 +29578,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 4 }, "second": { "arg": { @@ -26817,7 +29603,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26832,14 +29619,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 4 }, "second": { "name": "shorthandNumber", @@ -26853,10 +29643,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -26896,7 +29688,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26910,11 +29703,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26928,11 +29723,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26946,11 +29743,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -26964,11 +29763,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -26982,7 +29783,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -27013,7 +29815,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27027,11 +29830,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27045,11 +29850,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27063,11 +29870,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27081,11 +29890,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27100,7 +29911,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -27116,7 +29928,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -27129,11 +29942,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27147,7 +29962,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -27159,7 +29975,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -27177,7 +29994,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27191,11 +30009,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -27209,7 +30029,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -27230,7 +30051,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27244,11 +30066,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -27261,11 +30085,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -27278,22 +30104,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -27308,7 +30141,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -27324,7 +30158,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -27337,11 +30172,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27355,7 +30192,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -27367,7 +30205,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -27385,7 +30224,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27399,11 +30239,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -27417,7 +30259,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -27438,7 +30281,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27452,11 +30296,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -27469,11 +30315,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -27486,30 +30334,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -27528,7 +30385,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27542,11 +30400,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27560,11 +30420,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27579,16 +30441,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 3 }, - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -27605,7 +30471,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27619,11 +30486,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 18 + "priority": 18, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27638,14 +30507,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 17 + "priority": 17, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 16 + "priority": 16, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -27660,7 +30532,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27675,14 +30548,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 20 + "priority": 20, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 19 + "priority": 19, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -27696,10 +30572,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 21 + "priority": 21, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -27739,7 +30617,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27753,11 +30632,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27771,11 +30652,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27789,11 +30672,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27807,11 +30692,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -27825,7 +30712,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -27856,7 +30744,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27870,11 +30759,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27888,11 +30779,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27906,11 +30799,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -27924,11 +30819,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27943,7 +30840,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -27959,7 +30857,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -27972,11 +30871,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27990,7 +30891,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28002,7 +30904,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -28020,7 +30923,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28034,11 +30938,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -28052,7 +30958,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -28073,7 +30980,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28087,11 +30995,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -28104,11 +31014,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -28121,22 +31033,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -28151,7 +31070,8 @@ 7 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28167,7 +31087,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -28180,11 +31101,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28198,7 +31121,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28210,7 +31134,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -28228,7 +31153,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28242,11 +31168,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -28260,7 +31188,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -28281,7 +31210,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28295,11 +31225,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -28312,11 +31244,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -28329,30 +31263,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -28371,7 +31314,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28385,11 +31329,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28403,11 +31349,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28422,16 +31370,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 3 }, - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -28448,7 +31400,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28462,11 +31415,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 18 + "priority": 18, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28481,14 +31436,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 17 + "priority": 17, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 16 + "priority": 16, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -28503,7 +31461,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28518,14 +31477,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 20 + "priority": 20, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 19 + "priority": 19, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -28539,10 +31501,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 21 + "priority": 21, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 4, @@ -28580,7 +31544,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28594,11 +31559,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28612,11 +31579,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28630,11 +31599,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -28648,7 +31619,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -28679,7 +31651,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28693,11 +31666,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28711,11 +31686,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28729,11 +31706,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28747,11 +31726,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28766,7 +31747,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28782,7 +31764,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -28795,11 +31778,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28813,7 +31798,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28825,7 +31811,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -28843,7 +31830,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28857,11 +31845,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -28875,7 +31865,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -28896,7 +31887,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28910,11 +31902,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -28927,11 +31921,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -28944,22 +31940,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -28974,7 +31977,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28990,7 +31994,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -29003,11 +32008,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29021,7 +32028,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -29033,7 +32041,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -29051,7 +32060,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29065,11 +32075,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -29083,7 +32095,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -29104,7 +32117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29118,11 +32132,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -29135,11 +32151,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -29152,30 +32170,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -29194,7 +32221,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29208,11 +32236,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29226,11 +32256,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29245,16 +32277,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 3 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -29271,7 +32307,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29285,11 +32322,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 17 + "priority": 17, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29304,14 +32343,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 16 + "priority": 16, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -29326,7 +32368,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29341,14 +32384,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 19 + "priority": 19, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 18 + "priority": 18, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -29362,10 +32408,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 20 + "priority": 20, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 4, @@ -29403,7 +32451,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29417,11 +32466,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29435,11 +32486,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29453,11 +32506,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -29471,7 +32526,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -29502,7 +32558,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29516,11 +32573,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29534,11 +32593,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29552,11 +32613,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29570,11 +32633,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29589,7 +32654,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -29605,7 +32671,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -29618,11 +32685,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29636,7 +32705,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -29648,7 +32718,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -29666,7 +32737,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29680,11 +32752,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -29698,7 +32772,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -29719,7 +32794,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29733,11 +32809,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -29750,11 +32828,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -29767,22 +32847,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -29797,7 +32884,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -29813,7 +32901,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -29826,11 +32915,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29844,7 +32935,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -29856,7 +32948,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -29874,7 +32967,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29888,11 +32982,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -29906,7 +33002,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -29927,7 +33024,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -29941,11 +33039,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -29958,11 +33058,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -29975,30 +33077,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -30017,7 +33128,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30031,11 +33143,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30049,11 +33163,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30068,16 +33184,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 3 }, - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -30094,7 +33214,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30108,11 +33229,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 17 + "priority": 17, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30127,14 +33250,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 16 + "priority": 16, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -30149,7 +33275,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30164,14 +33291,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 19 + "priority": 19, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 18 + "priority": 18, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -30185,10 +33315,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 20 + "priority": 20, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 3, @@ -30224,7 +33356,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30238,11 +33371,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30256,11 +33391,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -30274,7 +33411,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -30305,7 +33443,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30319,11 +33458,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30337,11 +33478,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30355,11 +33498,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30373,11 +33518,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30392,7 +33539,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -30408,7 +33556,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -30421,11 +33570,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30439,7 +33590,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -30451,7 +33603,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -30469,7 +33622,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30483,11 +33637,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -30501,7 +33657,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -30522,7 +33679,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30536,11 +33694,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -30553,11 +33713,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -30570,22 +33732,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -30600,7 +33769,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -30616,7 +33786,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -30629,11 +33800,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -30647,7 +33820,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -30659,7 +33833,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -30677,7 +33852,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30691,11 +33867,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -30709,7 +33887,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -30730,7 +33909,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30744,11 +33924,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -30761,11 +33943,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -30778,30 +33962,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -30820,7 +34013,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30834,11 +34028,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30852,11 +34048,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30871,16 +34069,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -30897,7 +34099,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30911,11 +34114,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 16 + "priority": 16, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30930,14 +34135,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -30952,7 +34160,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -30967,14 +34176,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 18 + "priority": 18, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 17 + "priority": 17, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -30988,10 +34200,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 19 + "priority": 19, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 3, @@ -31027,7 +34241,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31041,11 +34256,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31059,11 +34276,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31077,7 +34296,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -31108,7 +34328,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31122,11 +34343,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31140,11 +34363,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31158,11 +34383,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31176,11 +34403,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31195,7 +34424,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -31211,7 +34441,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -31224,11 +34455,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31242,7 +34475,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -31254,7 +34488,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -31272,7 +34507,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31286,11 +34522,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31304,7 +34542,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -31325,7 +34564,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31339,11 +34579,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -31356,11 +34598,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -31373,22 +34617,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -31403,7 +34654,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -31419,7 +34671,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -31432,11 +34685,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31450,7 +34705,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -31462,7 +34718,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -31480,7 +34737,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31494,11 +34752,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31512,7 +34772,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -31533,7 +34794,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31547,11 +34809,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -31564,11 +34828,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -31581,30 +34847,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -31623,7 +34898,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31637,11 +34913,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31655,11 +34933,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31674,16 +34954,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 3 }, - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -31700,7 +34984,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31714,11 +34999,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 16 + "priority": 16, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31733,14 +35020,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -31755,7 +35045,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31770,14 +35061,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 18 + "priority": 18, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 17 + "priority": 17, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -31791,10 +35085,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 19 + "priority": 19, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 2, @@ -31828,7 +35124,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31842,11 +35139,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31860,7 +35159,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -31891,7 +35191,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31905,11 +35206,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31923,11 +35226,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31941,11 +35246,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -31959,11 +35266,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -31978,7 +35287,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -31994,7 +35304,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -32007,11 +35318,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -32025,7 +35338,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -32037,7 +35351,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -32055,7 +35370,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32069,11 +35385,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32087,7 +35405,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -32108,7 +35427,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32122,11 +35442,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -32139,11 +35461,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -32156,22 +35480,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -32186,7 +35517,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -32202,7 +35534,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -32215,11 +35548,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -32233,7 +35568,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -32245,7 +35581,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -32263,7 +35600,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32277,11 +35615,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32295,7 +35635,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -32316,7 +35657,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32330,11 +35672,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -32347,11 +35691,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -32364,30 +35710,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -32406,7 +35761,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32420,11 +35776,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32438,11 +35796,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32457,16 +35817,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -32483,7 +35847,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32497,11 +35862,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32516,14 +35883,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -32538,7 +35908,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32553,14 +35924,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 17 + "priority": 17, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 16 + "priority": 16, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -32574,10 +35948,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 18 + "priority": 18, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 2, @@ -32611,7 +35987,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32625,11 +36002,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32643,7 +36022,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -32674,7 +36054,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32688,11 +36069,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32706,11 +36089,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32724,11 +36109,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32742,11 +36129,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -32761,7 +36150,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -32777,7 +36167,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -32790,11 +36181,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -32808,7 +36201,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -32820,7 +36214,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -32838,7 +36233,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32852,11 +36248,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -32870,7 +36268,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -32891,7 +36290,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -32905,11 +36305,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -32922,11 +36324,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -32939,22 +36343,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -32969,7 +36380,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -32985,7 +36397,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -32998,11 +36411,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -33016,7 +36431,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -33028,7 +36444,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -33046,7 +36463,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33060,11 +36478,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -33078,7 +36498,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -33099,7 +36520,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33113,11 +36535,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -33130,11 +36554,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -33147,30 +36573,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -33189,7 +36624,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33203,11 +36639,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33221,11 +36659,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33240,16 +36680,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 3 }, - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -33266,7 +36710,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33280,11 +36725,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33299,14 +36746,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -33321,7 +36771,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33336,14 +36787,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 17 + "priority": 17, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 16 + "priority": 16, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -33357,10 +36811,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 18 + "priority": 18, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -33391,7 +36847,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -33405,7 +36862,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -33436,7 +36894,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33450,11 +36909,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33468,11 +36929,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33486,11 +36949,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33504,11 +36969,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -33523,7 +36990,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -33539,7 +37007,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -33552,11 +37021,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -33570,7 +37041,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -33582,7 +37054,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -33600,7 +37073,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33614,11 +37088,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -33632,7 +37108,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -33653,7 +37130,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33667,11 +37145,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -33684,11 +37164,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -33701,22 +37183,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -33731,7 +37220,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -33747,7 +37237,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -33760,11 +37251,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -33778,7 +37271,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -33790,7 +37284,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -33808,7 +37303,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33822,11 +37318,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -33840,7 +37338,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -33861,7 +37360,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33875,11 +37375,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -33892,11 +37394,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -33909,30 +37413,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -33951,7 +37464,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33965,11 +37479,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -33983,11 +37499,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34002,16 +37520,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -34028,7 +37550,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34042,11 +37565,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34061,14 +37586,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -34083,7 +37611,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34098,14 +37627,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 16 + "priority": 16, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -34119,10 +37651,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 17 + "priority": 17, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -34153,7 +37687,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 0 + "shorthandNumber": 0, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -34167,7 +37702,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -34198,7 +37734,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34212,11 +37749,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 7 + "priority": 7, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34230,11 +37769,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34248,11 +37789,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34266,11 +37809,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -34285,7 +37830,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -34301,7 +37847,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -34314,11 +37861,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -34332,7 +37881,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -34344,7 +37894,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -34362,7 +37913,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34376,11 +37928,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -34394,7 +37948,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -34415,7 +37970,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34429,11 +37985,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -34446,11 +38004,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -34463,22 +38023,29 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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": { @@ -34493,7 +38060,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -34509,7 +38077,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -34522,11 +38091,13 @@ 2 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -34540,7 +38111,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -34552,7 +38124,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -34570,7 +38143,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34584,11 +38158,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -34602,7 +38178,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "falseCase": { "type": "binary", @@ -34623,7 +38200,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34637,11 +38215,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -34654,11 +38234,13 @@ 3 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "e", @@ -34671,30 +38253,39 @@ 5 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "priority": 2 + "priority": 2, + "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 }, "second": { "arg": { @@ -34713,7 +38304,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34727,11 +38319,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 11 + "priority": 11, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34745,11 +38339,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 10 + "priority": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34764,16 +38360,20 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 9 + "priority": 9, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 8 + "priority": 8, + "maxNestedFunctionDepth": 3 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -34790,7 +38390,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34804,11 +38405,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 14 + "priority": 14, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34823,14 +38426,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 13 + "priority": 13, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 12 + "priority": 12, + "maxNestedFunctionDepth": 3 }, "second": { "arg": { @@ -34845,7 +38451,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34860,14 +38467,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 16 + "priority": 16, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 15 + "priority": 15, + "maxNestedFunctionDepth": 3 }, "second": { "name": "shorthandNumber", @@ -34881,10 +38491,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 17 + "priority": 17, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "conditionActive", "activePriority": 1, @@ -34915,7 +38527,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -34932,7 +38545,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34946,11 +38560,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34965,14 +38581,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -34987,7 +38606,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35002,14 +38622,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35023,10 +38646,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -35057,7 +38682,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -35074,7 +38700,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35088,11 +38715,13 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35107,14 +38736,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -35129,7 +38761,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35144,14 +38777,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35165,10 +38801,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 6 + "priority": 6, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "active", "activePriority": 3, @@ -35199,7 +38837,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -35214,7 +38853,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35229,14 +38869,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -35251,7 +38894,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35266,14 +38910,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35287,10 +38934,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 3, @@ -35321,7 +38970,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -35336,7 +38986,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35351,14 +39002,17 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -35373,7 +39027,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35388,14 +39043,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35409,10 +39067,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "active", "activePriority": 2, @@ -35443,7 +39103,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35457,10 +39118,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -35475,7 +39138,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35490,14 +39154,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35511,10 +39178,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 2, @@ -35545,7 +39214,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35559,10 +39229,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "state": "active", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -35577,7 +39249,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35592,14 +39265,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35613,10 +39289,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -35643,7 +39321,8 @@ 1 ], "funcPriorityAgg": [], - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -35658,7 +39337,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35673,14 +39353,17 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35694,10 +39377,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -35724,7 +39409,8 @@ 1 ], "funcPriorityAgg": [], - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "second": { "arg": { @@ -35739,7 +39425,8 @@ "funcPriorityAgg": [], "emphasizePriority": true, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -35754,14 +39441,17 @@ ], "emphasizePriority": true, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "active", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35775,10 +39465,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 3 + "priority": 3, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "active", "activePriority": 2, @@ -35805,7 +39497,8 @@ 1 ], "funcPriorityAgg": [], - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35819,10 +39512,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35836,10 +39531,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 2, @@ -35866,7 +39563,8 @@ 1 ], "funcPriorityAgg": [], - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35880,10 +39578,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "state": "active", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35897,10 +39597,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -35923,7 +39625,8 @@ 1 ], "funcPriorityAgg": [], - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35937,10 +39640,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "default", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -35963,7 +39668,8 @@ 1 ], "funcPriorityAgg": [], - "shorthandNumber": 6 + "shorthandNumber": 6, + "maxNestedFunctionDepth": 0 }, "second": { "name": "shorthandNumber", @@ -35977,10 +39683,12 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "state": "active", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -35998,7 +39706,8 @@ "emphasizePriority": false, "argPriorityAgg": [], "funcPriorityAgg": [], - "shorthandNumber": 24 + "shorthandNumber": 24, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/xhdq.json b/src/lib/runners/xhdq.json index 20dfc6ea5..de38c7906 100644 --- a/src/lib/runners/xhdq.json +++ b/src/lib/runners/xhdq.json @@ -16,7 +16,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -28,7 +29,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -57,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", @@ -74,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": { @@ -96,7 +105,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -108,7 +118,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -120,7 +131,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -136,7 +148,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -150,7 +163,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -164,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", @@ -185,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": { @@ -213,7 +236,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -225,7 +249,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -237,7 +262,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -253,7 +279,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -267,7 +294,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -281,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", @@ -302,21 +333,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 11, "containerState": "ready", @@ -333,7 +370,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 4 + "shorthandNumber": 4, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/xhul.json b/src/lib/runners/xhul.json index f6df5aeb5..dfa1a716a 100644 --- a/src/lib/runners/xhul.json +++ b/src/lib/runners/xhul.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -55,7 +58,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "A", @@ -68,7 +72,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -87,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -101,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", @@ -118,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", @@ -136,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": { @@ -161,7 +176,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -176,7 +192,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -192,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -205,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", @@ -222,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": { @@ -242,7 +265,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -258,7 +282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -271,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", @@ -288,27 +315,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "ready", diff --git a/src/lib/runners/xjzx.json b/src/lib/runners/xjzx.json index e20af1d54..dfd2e81fe 100644 --- a/src/lib/runners/xjzx.json +++ b/src/lib/runners/xjzx.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -55,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", @@ -72,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": { @@ -92,7 +100,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -108,7 +117,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -121,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", @@ -138,19 +150,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/xkcm.json b/src/lib/runners/xkcm.json index ef9071f16..0ca3a1192 100644 --- a/src/lib/runners/xkcm.json +++ b/src/lib/runners/xkcm.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -45,7 +47,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "c", @@ -58,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", @@ -75,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", @@ -92,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", @@ -109,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", @@ -126,15 +137,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 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/xlgb.json b/src/lib/runners/xlgb.json index c72acf2d8..38bb47c89 100644 --- a/src/lib/runners/xlgb.json +++ b/src/lib/runners/xlgb.json @@ -28,7 +28,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 10 + "shorthandNumber": 10, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -42,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", @@ -60,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", @@ -78,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", @@ -96,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", @@ -114,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", @@ -132,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", @@ -150,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", @@ -168,11 +183,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 9, "containerState": "ready", diff --git a/src/lib/runners/xmqp.json b/src/lib/runners/xmqp.json index 1b0bff598..58f3849ce 100644 --- a/src/lib/runners/xmqp.json +++ b/src/lib/runners/xmqp.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -28,11 +29,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", @@ -49,7 +52,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/xpks.json b/src/lib/runners/xpks.json index e8aca2d28..94dd871e7 100644 --- a/src/lib/runners/xpks.json +++ b/src/lib/runners/xpks.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "func": { "type": "repeat", @@ -36,7 +37,8 @@ }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "ready", diff --git a/src/lib/runners/xqjd.json b/src/lib/runners/xqjd.json index b654b94d8..425e0022e 100644 --- a/src/lib/runners/xqjd.json +++ b/src/lib/runners/xqjd.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "blank" + "shorthandNumberAfterConvert": "blank", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -52,7 +55,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -67,7 +71,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -78,9 +83,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -95,7 +102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "questionFoodGrey", @@ -106,9 +114,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -123,7 +133,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -135,7 +146,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -151,7 +163,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "questionFoodGrey", @@ -164,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", @@ -181,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", @@ -204,30 +223,38 @@ 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", diff --git a/src/lib/runners/xusi.json b/src/lib/runners/xusi.json index e5c5e1642..c3d9317b0 100644 --- a/src/lib/runners/xusi.json +++ b/src/lib/runners/xusi.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -38,7 +40,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -49,9 +52,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -65,7 +70,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -81,7 +87,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -95,7 +102,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -106,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", @@ -125,21 +136,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 }, "state": "needsAlphaConvert", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 1, @@ -157,7 +174,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -169,7 +187,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -184,7 +203,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -195,9 +215,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -211,7 +233,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -227,7 +250,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -241,7 +265,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -252,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", @@ -271,21 +299,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 }, "state": "alphaConvertDone", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1, diff --git a/src/lib/runners/xwzc.json b/src/lib/runners/xwzc.json index 8c0ff2189..42ef9d44e 100644 --- a/src/lib/runners/xwzc.json +++ b/src/lib/runners/xwzc.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -39,7 +41,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -52,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", @@ -69,15 +74,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/xxan.json b/src/lib/runners/xxan.json index bd8132b45..74082686b 100644 --- a/src/lib/runners/xxan.json +++ b/src/lib/runners/xxan.json @@ -15,7 +15,8 @@ "emphasizePriority": false, "bound": true, "shorthandNumber": 1, - "shorthandNumberAfterConvert": "number" + "shorthandNumberAfterConvert": "number", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -53,7 +56,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -69,7 +73,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -83,7 +88,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "a", @@ -97,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", @@ -118,21 +127,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/yabb.json b/src/lib/runners/yabb.json index 29a1c959f..9e783a466 100644 --- a/src/lib/runners/yabb.json +++ b/src/lib/runners/yabb.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -42,7 +44,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -54,7 +57,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -65,19 +69,24 @@ "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", diff --git a/src/lib/runners/ybne.json b/src/lib/runners/ybne.json index 78211179d..a31abe8f7 100644 --- a/src/lib/runners/ybne.json +++ b/src/lib/runners/ybne.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": false, - "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,21 +179,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 6, "containerState": "ready", diff --git a/src/lib/runners/ycpk.json b/src/lib/runners/ycpk.json index cc67e83b5..585d60121 100644 --- a/src/lib/runners/ycpk.json +++ b/src/lib/runners/ycpk.json @@ -14,7 +14,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "falseCase" + "shorthandNumberAfterConvert": "falseCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumberAfterConvert": "trueCase" + "shorthandNumberAfterConvert": "trueCase", + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -56,7 +59,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -67,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": { @@ -86,7 +93,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -98,7 +106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -110,7 +119,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -121,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", @@ -145,23 +159,28 @@ "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", diff --git a/src/lib/runners/ycxr.json b/src/lib/runners/ycxr.json index 6d8d46ffa..67f42b6ef 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,13 +56,16 @@ "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, diff --git a/src/lib/runners/yfwd.json b/src/lib/runners/yfwd.json index 21cdc52c2..f6da20a53 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,19 +70,24 @@ "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, diff --git a/src/lib/runners/yiri.json b/src/lib/runners/yiri.json index 6954b618d..f12105be9 100644 --- a/src/lib/runners/yiri.json +++ b/src/lib/runners/yiri.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/yjur.json b/src/lib/runners/yjur.json index 53b4caedd..8bdcb1a57 100644 --- a/src/lib/runners/yjur.json +++ b/src/lib/runners/yjur.json @@ -20,7 +20,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 5 + "shorthandNumber": 5, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -34,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", @@ -52,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", @@ -70,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", @@ -88,11 +95,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "pred" + "shorthandFunc": "pred", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 5, "containerState": "ready", @@ -109,7 +118,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/ykqf.json b/src/lib/runners/ykqf.json index 7518ce96f..8297ddae6 100644 --- a/src/lib/runners/ykqf.json +++ b/src/lib/runners/ykqf.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "bentoBox", @@ -38,13 +40,16 @@ "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", diff --git a/src/lib/runners/ylav.json b/src/lib/runners/ylav.json index d0c433321..3b0c89c72 100644 --- a/src/lib/runners/ylav.json +++ b/src/lib/runners/ylav.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": "g", @@ -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": false, - "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": { @@ -114,7 +124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -125,9 +136,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -142,7 +155,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -153,9 +167,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -170,7 +186,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -182,7 +199,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -198,7 +216,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -211,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", @@ -228,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", @@ -251,29 +276,37 @@ 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", diff --git a/src/lib/runners/ynoy.json b/src/lib/runners/ynoy.json index b1effda6e..8ae4d7eb7 100644 --- a/src/lib/runners/ynoy.json +++ b/src/lib/runners/ynoy.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -44,7 +46,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -57,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", @@ -74,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", @@ -91,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": { @@ -113,7 +124,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -129,7 +141,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -143,7 +156,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -155,7 +169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -167,7 +182,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -183,7 +199,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -197,7 +214,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -211,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", @@ -232,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": { @@ -261,7 +288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -273,7 +301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -289,7 +318,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -302,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", @@ -319,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": { @@ -342,7 +378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -354,7 +391,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -365,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": { @@ -384,7 +425,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -396,7 +438,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -408,7 +451,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -419,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", @@ -441,29 +489,36 @@ 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", @@ -483,7 +538,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -495,7 +551,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -513,7 +570,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -526,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", @@ -543,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", @@ -560,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": { @@ -582,7 +648,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -598,7 +665,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -612,7 +680,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -624,7 +693,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -636,7 +706,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -652,7 +723,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -666,7 +738,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -680,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", @@ -701,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": { @@ -730,7 +812,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -742,7 +825,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -758,7 +842,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -771,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", @@ -788,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": { @@ -811,7 +902,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -823,7 +915,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -834,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": { @@ -853,7 +949,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -865,7 +962,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -877,7 +975,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -888,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", @@ -910,29 +1013,36 @@ 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, @@ -953,7 +1063,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -965,7 +1076,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -983,7 +1095,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -996,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", @@ -1013,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", @@ -1030,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": { @@ -1052,7 +1173,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1068,7 +1190,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1082,7 +1205,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1094,7 +1218,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1106,7 +1231,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1122,7 +1248,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1136,7 +1263,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -1150,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", @@ -1171,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": { @@ -1200,7 +1337,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1212,7 +1350,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1228,7 +1367,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1241,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", @@ -1258,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": { @@ -1281,7 +1427,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1293,7 +1440,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1304,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": { @@ -1323,7 +1474,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1335,7 +1487,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1347,7 +1500,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1358,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", @@ -1380,29 +1538,36 @@ 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, @@ -1424,7 +1589,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1436,7 +1602,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1454,7 +1621,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1467,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", @@ -1484,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", @@ -1501,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": { @@ -1523,7 +1699,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1540,7 +1717,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1552,7 +1730,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1570,7 +1749,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1583,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", @@ -1600,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", @@ -1617,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": { @@ -1639,7 +1827,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1651,7 +1840,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1663,7 +1853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1679,7 +1870,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -1693,7 +1885,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -1707,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", @@ -1728,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": { @@ -1757,7 +1959,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1769,7 +1972,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1785,7 +1989,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1798,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", @@ -1815,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": { @@ -1838,7 +2049,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1850,7 +2062,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1861,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": { @@ -1880,7 +2096,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1892,7 +2109,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1904,7 +2122,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -1915,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": { @@ -1938,7 +2161,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1950,7 +2174,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1968,7 +2193,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -1981,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", @@ -1998,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", @@ -2015,37 +2245,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": 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, @@ -2066,7 +2306,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2078,7 +2319,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2096,7 +2338,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2109,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", @@ -2126,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", @@ -2143,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": { @@ -2165,7 +2416,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2182,7 +2434,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2194,7 +2447,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2212,7 +2466,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2225,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", @@ -2242,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", @@ -2259,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": { @@ -2281,7 +2544,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2293,7 +2557,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2305,7 +2570,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2321,7 +2587,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2335,7 +2602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2349,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", @@ -2370,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": { @@ -2399,7 +2676,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2411,7 +2689,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2427,7 +2706,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2440,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", @@ -2457,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": { @@ -2480,7 +2766,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2492,7 +2779,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2503,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": { @@ -2522,7 +2813,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2534,7 +2826,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2546,7 +2839,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -2557,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": { @@ -2580,7 +2878,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2592,7 +2891,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2610,7 +2910,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2623,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", @@ -2640,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", @@ -2657,37 +2962,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": 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, @@ -2710,7 +3025,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2722,7 +3038,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2740,7 +3057,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -2753,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", @@ -2770,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", @@ -2787,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": { @@ -2809,7 +3135,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2821,7 +3148,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2833,7 +3161,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2849,7 +3178,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2863,7 +3193,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -2877,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", @@ -2898,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": { @@ -2927,7 +3267,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2939,7 +3280,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2955,7 +3297,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2968,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", @@ -2985,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": { @@ -3008,7 +3357,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3020,7 +3370,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3031,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": { @@ -3050,7 +3404,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3062,7 +3417,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3074,7 +3430,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3085,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": { @@ -3108,7 +3469,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3120,7 +3482,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3138,7 +3501,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3151,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", @@ -3168,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", @@ -3185,31 +3553,39 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 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, @@ -3232,7 +3608,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3244,7 +3621,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3262,7 +3640,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3275,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", @@ -3292,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", @@ -3309,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": { @@ -3331,7 +3718,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3343,7 +3731,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3355,7 +3744,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3371,7 +3761,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3385,7 +3776,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -3399,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", @@ -3420,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": { @@ -3449,7 +3850,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3461,7 +3863,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3477,7 +3880,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -3490,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", @@ -3507,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": { @@ -3530,7 +3940,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3542,7 +3953,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3553,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": { @@ -3572,7 +3987,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3584,7 +4000,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3596,7 +4013,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -3607,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": { @@ -3630,7 +4052,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3642,7 +4065,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3660,7 +4084,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3673,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", @@ -3690,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", @@ -3707,31 +4136,39 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -3754,7 +4191,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3766,7 +4204,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3784,7 +4223,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -3797,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", @@ -3814,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", @@ -3831,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": { @@ -3853,7 +4301,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3865,7 +4314,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3877,7 +4327,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3893,7 +4344,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3907,7 +4359,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -3921,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", @@ -3942,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": { @@ -3971,7 +4433,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3983,7 +4446,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3999,7 +4463,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4012,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", @@ -4029,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": { @@ -4052,7 +4523,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4064,7 +4536,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4075,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": { @@ -4094,7 +4570,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4106,7 +4583,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4118,7 +4596,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -4129,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": { @@ -4152,7 +4635,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4164,7 +4648,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4182,7 +4667,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4195,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", @@ -4212,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", @@ -4229,31 +4719,39 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 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, @@ -4277,7 +4775,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4289,7 +4788,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4307,7 +4807,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4320,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", @@ -4337,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", @@ -4354,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": { @@ -4376,7 +4885,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4388,7 +4898,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4400,7 +4911,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4416,7 +4928,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4430,7 +4943,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -4444,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", @@ -4465,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": { @@ -4494,7 +5017,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4506,7 +5030,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4522,7 +5047,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -4535,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", @@ -4552,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": { @@ -4575,7 +5107,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4587,7 +5120,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4598,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": { @@ -4617,7 +5154,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4629,7 +5167,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4641,7 +5180,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -4652,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": { @@ -4675,7 +5219,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4687,7 +5232,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4705,7 +5251,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4719,7 +5266,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4731,7 +5279,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4743,7 +5292,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -4754,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": { @@ -4778,7 +5333,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4790,7 +5346,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4802,7 +5359,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -4813,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": { @@ -4837,7 +5400,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4849,7 +5413,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4861,7 +5426,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -4872,37 +5438,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -4925,7 +5502,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4937,7 +5515,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4955,7 +5534,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -4968,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", @@ -4985,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", @@ -5002,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": { @@ -5024,7 +5612,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5036,7 +5625,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5048,7 +5638,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5064,7 +5655,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5078,7 +5670,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -5092,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", @@ -5113,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": { @@ -5142,7 +5744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5154,7 +5757,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5170,7 +5774,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -5183,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", @@ -5200,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": { @@ -5223,7 +5834,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5235,7 +5847,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5246,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": { @@ -5265,7 +5881,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5277,7 +5894,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5289,7 +5907,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -5300,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": { @@ -5323,7 +5946,8 @@ 4 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5335,7 +5959,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5353,7 +5978,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5367,7 +5993,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5379,7 +6006,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5391,7 +6019,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -5402,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": { @@ -5426,7 +6060,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5438,7 +6073,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5450,7 +6086,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -5461,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": { @@ -5485,7 +6127,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5497,7 +6140,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5509,7 +6153,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -5520,37 +6165,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -5573,7 +6229,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5585,7 +6242,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5603,7 +6261,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -5616,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", @@ -5633,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", @@ -5650,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": { @@ -5672,7 +6339,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5684,7 +6352,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5696,7 +6365,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5712,7 +6382,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5726,7 +6397,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -5740,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", @@ -5761,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": { @@ -5790,7 +6471,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5802,7 +6484,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5818,7 +6501,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -5831,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", @@ -5848,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": { @@ -5871,7 +6561,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5883,7 +6574,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5894,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": { @@ -5914,7 +6609,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5932,7 +6628,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5946,7 +6643,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5958,7 +6656,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5970,7 +6669,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -5981,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": { @@ -6005,7 +6710,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6017,7 +6723,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6029,7 +6736,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -6040,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": { @@ -6064,7 +6777,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6076,7 +6790,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6088,7 +6803,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -6099,31 +6815,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": "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, @@ -6146,7 +6871,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6158,7 +6884,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6176,7 +6903,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -6189,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", @@ -6206,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", @@ -6223,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": { @@ -6245,7 +6981,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6257,7 +6994,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6269,7 +7007,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6285,7 +7024,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6299,7 +7039,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -6313,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", @@ -6334,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": { @@ -6363,7 +7113,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6375,7 +7126,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6391,7 +7143,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -6404,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", @@ -6421,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": { @@ -6444,7 +7203,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6456,7 +7216,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -6467,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": { @@ -6487,7 +7251,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6505,7 +7270,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6519,7 +7285,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6531,7 +7298,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6543,7 +7311,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -6554,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": { @@ -6578,7 +7352,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6590,7 +7365,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6602,7 +7378,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -6613,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": { @@ -6637,7 +7419,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6649,7 +7432,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6661,7 +7445,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -6672,31 +7457,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": "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -6719,7 +7513,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6731,7 +7526,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6749,7 +7545,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -6762,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", @@ -6779,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", @@ -6796,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": { @@ -6818,7 +7623,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6830,7 +7636,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6842,7 +7649,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6858,7 +7666,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -6872,7 +7681,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -6886,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", @@ -6907,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": { @@ -6936,7 +7755,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6948,7 +7768,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -6964,7 +7785,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -6977,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", @@ -6994,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": { @@ -7017,7 +7845,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7029,7 +7858,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7040,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": { @@ -7060,7 +7893,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7078,7 +7912,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7092,7 +7927,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7104,7 +7940,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7116,7 +7953,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7127,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": { @@ -7151,7 +7994,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7163,7 +8007,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7175,7 +8020,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7186,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": { @@ -7210,7 +8061,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7222,7 +8074,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7234,7 +8087,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7245,31 +8099,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": "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, @@ -7293,7 +8156,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7305,7 +8169,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7323,7 +8188,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -7336,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", @@ -7353,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", @@ -7370,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": { @@ -7392,7 +8266,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7404,7 +8279,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7416,7 +8292,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7432,7 +8309,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -7446,7 +8324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -7460,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", @@ -7481,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": { @@ -7510,7 +8398,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7522,7 +8411,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7538,7 +8428,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -7551,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", @@ -7568,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": { @@ -7591,7 +8488,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7603,7 +8501,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7614,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": { @@ -7634,7 +8536,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7653,7 +8556,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7665,7 +8569,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -7676,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": { @@ -7694,7 +8602,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7706,7 +8615,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7718,7 +8628,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7729,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": { @@ -7753,7 +8669,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7765,7 +8682,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7777,7 +8695,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7788,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": { @@ -7812,7 +8736,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7824,7 +8749,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7836,7 +8762,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -7847,31 +8774,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": "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -7894,7 +8830,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7906,7 +8843,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -7924,7 +8862,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -7937,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", @@ -7954,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", @@ -7971,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": { @@ -7993,7 +8940,8 @@ 4 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8005,7 +8953,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8017,7 +8966,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8033,7 +8983,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8047,7 +8998,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -8061,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", @@ -8082,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": { @@ -8111,7 +9072,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8123,7 +9085,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8139,7 +9102,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -8152,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", @@ -8169,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": { @@ -8192,7 +9162,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8204,7 +9175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8215,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": { @@ -8235,7 +9210,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8254,7 +9230,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8266,7 +9243,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8277,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": { @@ -8295,7 +9276,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8307,7 +9289,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8319,7 +9302,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8330,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": { @@ -8354,7 +9343,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8366,7 +9356,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8378,7 +9369,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8389,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": { @@ -8413,7 +9410,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8425,7 +9423,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8437,7 +9436,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8448,31 +9448,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": "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -8495,7 +9504,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8507,7 +9517,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8525,7 +9536,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -8538,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", @@ -8555,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", @@ -8572,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": { @@ -8594,7 +9614,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8606,7 +9627,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8618,7 +9640,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8634,7 +9657,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -8648,7 +9672,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -8662,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", @@ -8683,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": { @@ -8712,7 +9746,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8724,7 +9759,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8740,7 +9776,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -8753,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", @@ -8770,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": { @@ -8797,7 +9840,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8809,7 +9853,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -8820,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": { @@ -8838,7 +9886,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8850,7 +9899,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8862,7 +9912,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8873,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": { @@ -8897,7 +9953,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8909,7 +9966,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8921,7 +9979,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8932,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": { @@ -8958,7 +10022,8 @@ 5 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8970,7 +10035,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -8982,7 +10048,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -8993,25 +10060,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 }, "state": "default", "type": "call", - "priority": 4 + "priority": 4, + "maxNestedFunctionDepth": 3 }, "state": "default", "type": "call", - "priority": 5 + "priority": 5, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -9034,7 +10108,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9046,7 +10121,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9064,7 +10140,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -9077,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", @@ -9094,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", @@ -9111,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": { @@ -9133,7 +10218,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9145,7 +10231,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9157,7 +10244,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9173,7 +10261,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9187,7 +10276,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -9201,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", @@ -9222,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": { @@ -9251,7 +10350,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9263,7 +10363,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9279,7 +10380,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -9292,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", @@ -9309,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": { @@ -9336,7 +10444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9348,7 +10457,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9359,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": { @@ -9377,7 +10490,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9389,7 +10503,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9401,7 +10516,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -9412,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": { @@ -9436,7 +10557,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9448,7 +10570,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9460,7 +10583,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -9471,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": { @@ -9497,7 +10626,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9509,7 +10639,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9521,7 +10652,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -9532,25 +10664,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": "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -9573,7 +10712,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9585,7 +10725,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9603,7 +10744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -9616,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", @@ -9633,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", @@ -9650,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": { @@ -9672,7 +10822,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9684,7 +10835,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9696,7 +10848,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9712,7 +10865,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -9726,7 +10880,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -9740,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", @@ -9761,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": { @@ -9790,7 +10954,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9802,7 +10967,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9818,7 +10984,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -9831,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", @@ -9848,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": { @@ -9875,7 +11048,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9887,7 +11061,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -9898,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": { @@ -9916,7 +11094,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9928,7 +11107,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9940,7 +11120,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -9951,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": { @@ -9975,7 +11161,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9987,7 +11174,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -9999,7 +11187,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -10010,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": { @@ -10036,7 +11230,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10048,7 +11243,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10060,7 +11256,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -10071,25 +11268,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": "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 }, "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 1, @@ -10112,7 +11316,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10124,7 +11329,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10142,7 +11348,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -10155,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", @@ -10172,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", @@ -10189,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": { @@ -10211,7 +11426,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10223,7 +11439,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10235,7 +11452,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10251,7 +11469,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10265,7 +11484,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -10279,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", @@ -10300,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": { @@ -10329,7 +11558,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10341,7 +11571,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10357,7 +11588,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -10370,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", @@ -10387,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": { @@ -10414,7 +11652,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10426,7 +11665,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10437,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": { @@ -10455,7 +11698,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10467,7 +11711,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10479,7 +11724,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -10490,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": { @@ -10514,7 +11765,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10526,7 +11778,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10538,7 +11791,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -10549,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": { @@ -10575,7 +11834,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10587,7 +11847,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10599,7 +11860,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -10610,25 +11872,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": "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 }, "previouslyChangedExpressionState": "alphaConvertDone", "activePriority": 1, @@ -10651,7 +11920,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10663,7 +11933,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10681,7 +11952,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -10694,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", @@ -10711,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", @@ -10728,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": { @@ -10750,7 +12030,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10762,7 +12043,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10774,7 +12056,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10790,7 +12073,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -10804,7 +12088,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -10818,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", @@ -10839,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": { @@ -10868,7 +12162,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10880,7 +12175,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10896,7 +12192,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -10909,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", @@ -10926,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": { @@ -10953,7 +12256,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -10965,7 +12269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -10976,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": { @@ -10994,7 +12302,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11006,7 +12315,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11018,7 +12328,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -11029,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": { @@ -11053,7 +12369,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11065,7 +12382,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11077,7 +12395,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -11088,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": { @@ -11114,7 +12438,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11126,7 +12451,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11138,7 +12464,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -11149,25 +12476,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": "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, @@ -11191,7 +12525,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11203,7 +12538,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11221,7 +12557,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -11234,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", @@ -11251,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", @@ -11268,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": { @@ -11290,7 +12635,8 @@ 6 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11302,7 +12648,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11314,7 +12661,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11330,7 +12678,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11344,7 +12693,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -11358,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", @@ -11379,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": { @@ -11408,7 +12767,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11420,7 +12780,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11436,7 +12797,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -11449,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", @@ -11466,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": { @@ -11493,7 +12861,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11505,7 +12874,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -11516,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": { @@ -11534,7 +12907,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11546,7 +12920,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11558,7 +12933,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -11569,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": { @@ -11593,7 +12974,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11605,7 +12987,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11617,7 +13000,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "g", @@ -11628,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": { @@ -11654,7 +13043,8 @@ 5 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11666,7 +13056,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11678,7 +13069,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -11689,25 +13081,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": "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -11730,7 +13129,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11742,7 +13142,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11760,7 +13161,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -11773,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", @@ -11790,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", @@ -11807,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": { @@ -11829,7 +13239,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11841,7 +13252,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11853,7 +13265,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11869,7 +13282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -11883,7 +13297,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -11897,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", @@ -11918,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": { @@ -11947,7 +13371,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11959,7 +13384,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -11975,7 +13401,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -11988,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", @@ -12005,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": { @@ -12028,7 +13461,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12040,7 +13474,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -12051,19 +13486,24 @@ "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, @@ -12086,7 +13526,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12098,7 +13539,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12116,7 +13558,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12129,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", @@ -12146,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", @@ -12163,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": { @@ -12185,7 +13636,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12197,7 +13649,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12209,7 +13662,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12225,7 +13679,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12239,7 +13694,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -12253,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", @@ -12274,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": { @@ -12303,7 +13768,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12315,7 +13781,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12331,7 +13798,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -12344,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", @@ -12361,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": { @@ -12384,7 +13858,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12396,7 +13871,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -12407,19 +13883,24 @@ "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -12442,7 +13923,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12454,7 +13936,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12472,7 +13955,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12485,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", @@ -12502,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", @@ -12519,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": { @@ -12541,7 +14033,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12553,7 +14046,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12565,7 +14059,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12581,7 +14076,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12595,7 +14091,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -12609,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", @@ -12630,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": { @@ -12659,7 +14165,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12671,7 +14178,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12687,7 +14195,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -12700,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", @@ -12717,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": { @@ -12740,7 +14255,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12752,7 +14268,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -12763,19 +14280,24 @@ "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, @@ -12799,7 +14321,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12811,7 +14334,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12829,7 +14353,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -12842,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", @@ -12859,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", @@ -12876,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": { @@ -12898,7 +14431,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12910,7 +14444,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12922,7 +14457,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -12938,7 +14474,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -12952,7 +14489,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -12966,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", @@ -12987,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": { @@ -13016,7 +14563,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13028,7 +14576,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13044,7 +14593,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -13057,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", @@ -13074,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": { @@ -13097,7 +14653,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13109,7 +14666,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -13120,19 +14678,24 @@ "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -13155,7 +14718,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13167,7 +14731,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13185,7 +14750,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13198,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", @@ -13215,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", @@ -13232,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": { @@ -13254,7 +14828,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13266,7 +14841,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13278,7 +14854,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13294,7 +14871,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13308,7 +14886,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -13322,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", @@ -13343,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": { @@ -13371,7 +14959,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -13382,13 +14971,16 @@ "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, @@ -13411,7 +15003,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13423,7 +15016,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13441,7 +15035,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13454,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", @@ -13471,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", @@ -13488,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": { @@ -13510,7 +15113,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13522,7 +15126,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13534,7 +15139,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13550,7 +15156,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13564,7 +15171,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -13578,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", @@ -13599,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": { @@ -13627,7 +15244,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -13638,13 +15256,16 @@ "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, @@ -13667,7 +15288,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13679,7 +15301,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13697,7 +15320,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13710,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", @@ -13727,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", @@ -13744,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": { @@ -13766,7 +15398,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13778,7 +15411,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13790,7 +15424,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13806,7 +15441,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -13820,7 +15456,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -13834,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", @@ -13855,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": { @@ -13883,7 +15529,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -13894,13 +15541,16 @@ "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, @@ -13924,7 +15574,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13936,7 +15587,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -13954,7 +15606,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -13967,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", @@ -13984,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", @@ -14001,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": { @@ -14023,7 +15684,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14035,7 +15697,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14047,7 +15710,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14063,7 +15727,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14077,7 +15742,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -14091,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", @@ -14112,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": { @@ -14140,7 +15815,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14155,7 +15831,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14167,7 +15844,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14185,7 +15863,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14198,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", @@ -14215,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", @@ -14232,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": { @@ -14254,7 +15941,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14266,7 +15954,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14278,7 +15967,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14294,7 +15984,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14308,7 +15999,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -14322,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", @@ -14343,27 +16038,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 }, - "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, @@ -14386,7 +16089,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14398,7 +16102,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14416,7 +16121,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14429,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", @@ -14446,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", @@ -14463,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": { @@ -14485,7 +16199,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14497,7 +16212,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14509,7 +16225,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14525,7 +16242,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14539,7 +16257,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -14553,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", @@ -14574,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": { @@ -14602,7 +16330,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14617,7 +16346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14629,7 +16359,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14647,7 +16378,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14660,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", @@ -14677,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", @@ -14694,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": { @@ -14716,7 +16456,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14728,7 +16469,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14740,7 +16482,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14756,7 +16499,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14770,7 +16514,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -14784,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", @@ -14805,27 +16553,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 }, - "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, @@ -14846,7 +16602,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14858,7 +16615,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14876,7 +16634,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -14889,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", @@ -14906,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", @@ -14923,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": { @@ -14945,7 +16712,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14957,7 +16725,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14969,7 +16738,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -14985,7 +16755,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -14999,7 +16770,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -15013,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", @@ -15034,21 +16809,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "default", "activePriority": 1, @@ -15069,7 +16850,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15081,7 +16863,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15099,7 +16882,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15112,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", @@ -15129,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", @@ -15146,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": { @@ -15168,7 +16960,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15180,7 +16973,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15192,7 +16986,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15208,7 +17003,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15222,7 +17018,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -15236,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", @@ -15257,21 +17057,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -15292,7 +17098,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15304,7 +17111,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15322,7 +17130,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15335,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", @@ -15352,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", @@ -15369,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": { @@ -15391,7 +17208,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15403,7 +17221,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15415,7 +17234,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15431,7 +17251,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15445,7 +17266,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -15459,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", @@ -15480,21 +17305,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": true, @@ -15516,7 +17347,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15528,7 +17360,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15546,7 +17379,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15559,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", @@ -15576,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", @@ -15593,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": { @@ -15615,7 +17457,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15627,7 +17470,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15639,7 +17483,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15655,7 +17500,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15669,7 +17515,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15684,7 +17531,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15696,7 +17544,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15714,7 +17563,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15727,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", @@ -15744,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", @@ -15761,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", @@ -15790,21 +17650,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewAfter", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -15825,7 +17691,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15837,7 +17704,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15855,7 +17723,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -15868,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", @@ -15885,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", @@ -15902,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": { @@ -15924,7 +17801,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15936,7 +17814,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15948,7 +17827,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -15964,7 +17844,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15978,7 +17859,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -15993,7 +17875,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16005,7 +17888,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16023,7 +17907,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16036,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", @@ -16053,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", @@ -16070,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", @@ -16099,21 +17994,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 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 5 }, "state": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 5 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -16131,7 +18032,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16143,7 +18045,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16159,7 +18062,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16173,7 +18077,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16188,7 +18093,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16200,7 +18106,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16218,7 +18125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16231,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", @@ -16248,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", @@ -16265,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", @@ -16294,15 +18212,19 @@ 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, @@ -16320,7 +18242,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16332,7 +18255,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16348,7 +18272,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16362,7 +18287,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16377,7 +18303,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16389,7 +18316,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16407,7 +18335,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16420,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", @@ -16437,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", @@ -16454,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", @@ -16483,15 +18422,19 @@ 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": "showFuncUnbound", "activePriority": 2, @@ -16509,7 +18452,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16521,7 +18465,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16537,7 +18482,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16551,7 +18497,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16566,7 +18513,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16578,7 +18526,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16596,7 +18545,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "l", @@ -16609,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", @@ -16626,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", @@ -16643,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", @@ -16672,15 +18632,19 @@ 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, @@ -16699,7 +18663,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16711,7 +18676,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16727,7 +18693,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16741,7 +18708,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16756,7 +18724,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16768,7 +18737,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16786,7 +18756,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -16799,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", @@ -16816,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", @@ -16833,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", @@ -16862,15 +18843,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -16888,7 +18873,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16900,7 +18886,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16916,7 +18903,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16930,7 +18918,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -16945,7 +18934,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16957,7 +18947,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -16975,7 +18966,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -16988,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", @@ -17005,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", @@ -17022,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", @@ -17051,15 +19053,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -17077,7 +19083,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17089,7 +19096,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17105,7 +19113,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17119,7 +19128,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17137,7 +19147,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17150,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", @@ -17167,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", @@ -17184,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", @@ -17207,15 +19226,19 @@ 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, @@ -17233,7 +19256,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17245,7 +19269,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17261,7 +19286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17275,7 +19301,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17293,7 +19320,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17306,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", @@ -17323,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", @@ -17340,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", @@ -17363,15 +19399,19 @@ 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": "showFuncBound", "activePriority": 2, @@ -17389,7 +19429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17401,7 +19442,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17417,7 +19459,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17431,7 +19474,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17449,7 +19493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17462,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", @@ -17479,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", @@ -17496,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", @@ -17519,15 +19572,19 @@ 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, @@ -17546,7 +19603,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17558,7 +19616,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17574,7 +19633,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17588,7 +19648,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17606,7 +19667,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17619,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", @@ -17636,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", @@ -17653,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", @@ -17676,15 +19746,19 @@ 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": "betaReducePreviewAfter", "activePriority": 2, @@ -17702,7 +19776,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17714,7 +19789,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17730,7 +19806,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -17744,7 +19821,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17762,7 +19840,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17775,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", @@ -17792,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", @@ -17809,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", @@ -17832,15 +19919,19 @@ 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": "betaReducePreviewCrossed", "activePriority": 2, @@ -17858,7 +19949,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17870,7 +19962,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -17890,7 +19983,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "j", @@ -17903,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", @@ -17920,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", @@ -17937,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", @@ -17954,15 +20054,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/ysxf.json b/src/lib/runners/ysxf.json index 58b845267..ea8009da9 100644 --- a/src/lib/runners/ysxf.json +++ b/src/lib/runners/ysxf.json @@ -17,7 +17,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "shorthandNumber", @@ -31,7 +32,8 @@ ], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -57,7 +59,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 3 + "shorthandNumber": 3, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -71,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", @@ -89,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", @@ -107,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", @@ -124,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", @@ -142,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", @@ -162,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", @@ -180,11 +196,13 @@ ], "emphasizePriority": false, "bound": true, - "shorthandFunc": "add" + "shorthandFunc": "add", + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 10, "containerState": "ready", diff --git a/src/lib/runners/yxel.json b/src/lib/runners/yxel.json index 6839ff698..c8859a61c 100644 --- a/src/lib/runners/yxel.json +++ b/src/lib/runners/yxel.json @@ -10,7 +10,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/yyfi.json b/src/lib/runners/yyfi.json index 111269eb4..da0923a72 100644 --- a/src/lib/runners/yyfi.json +++ b/src/lib/runners/yyfi.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,13 +105,16 @@ ], "emphasizePriority": false, "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", diff --git a/src/lib/runners/zahd.json b/src/lib/runners/zahd.json index e2920409d..7047f5aa3 100644 --- a/src/lib/runners/zahd.json +++ b/src/lib/runners/zahd.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "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,21 +83,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": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "numLeafNodes": 3, "containerState": "ready", @@ -109,7 +120,8 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 1 + "shorthandNumber": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 1, "containerState": "done", diff --git a/src/lib/runners/zdpf.json b/src/lib/runners/zdpf.json index f71a40de3..5baaecb25 100644 --- a/src/lib/runners/zdpf.json +++ b/src/lib/runners/zdpf.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,9 +45,11 @@ "funcPriorityAgg": [], "emphasizePriority": false, "bound": true, - "shorthandNumber": 2 + "shorthandNumber": 2, + "maxNestedFunctionDepth": 0 }, - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 3, "containerState": "ready", diff --git a/src/lib/runners/zemy.json b/src/lib/runners/zemy.json index 1ea6c5f10..c9718d238 100644 --- a/src/lib/runners/zemy.json +++ b/src/lib/runners/zemy.json @@ -15,7 +15,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -29,7 +30,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -40,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", @@ -59,11 +64,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -85,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -99,7 +107,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "a", @@ -110,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", @@ -129,11 +141,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -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,11 +218,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -226,7 +247,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -240,7 +262,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -251,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", @@ -270,11 +296,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -296,7 +324,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -310,7 +339,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -321,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", @@ -340,11 +373,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 1 }, "numLeafNodes": 3, "containerState": "stepped", @@ -364,7 +399,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -377,11 +413,13 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 2, "containerState": "done", diff --git a/src/lib/runners/zkon.json b/src/lib/runners/zkon.json index e020ff475..d3504da53 100644 --- a/src/lib/runners/zkon.json +++ b/src/lib/runners/zkon.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -28,7 +29,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -40,7 +42,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "type": "conditional", @@ -55,7 +58,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "trueCase": { "name": "A", @@ -68,7 +72,8 @@ 1 ], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "falseCase": { "arg": { @@ -87,7 +92,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "shorthandFunc", @@ -101,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", @@ -118,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", @@ -136,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": { @@ -161,7 +176,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -176,7 +192,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -192,7 +209,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -205,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", @@ -222,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": { @@ -242,7 +265,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -258,7 +282,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -271,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", @@ -288,27 +315,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 }, "state": "default", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, "state": "default", "type": "call", - "priority": 2 + "priority": 2, + "maxNestedFunctionDepth": 2 }, "numLeafNodes": 13, "containerState": "ready", diff --git a/src/lib/runners/zlrx.json b/src/lib/runners/zlrx.json index 9535bca69..04b3d881a 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,17 +66,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": "active", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "active", "activePriority": 1, @@ -92,7 +101,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -106,7 +116,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -130,7 +142,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -141,17 +154,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": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -171,7 +189,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -185,7 +204,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -197,7 +217,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -209,7 +230,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -220,17 +242,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": "betaReducePreviewBefore", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewBefore", "matchExists": false, @@ -251,7 +278,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -265,7 +293,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -277,7 +306,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -289,7 +319,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -300,17 +331,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": "betaReducePreviewCrossed", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 3 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -328,7 +364,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -340,7 +377,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "b", @@ -351,11 +389,14 @@ "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, diff --git a/src/lib/runners/zsxo.json b/src/lib/runners/zsxo.json index 247953557..4f6b4629c 100644 --- a/src/lib/runners/zsxo.json +++ b/src/lib/runners/zsxo.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -41,7 +43,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "b", @@ -54,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", @@ -71,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", @@ -88,15 +95,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 }, "previouslyChangedExpressionState": "default", "activePriority": 2, diff --git a/src/lib/runners/zuus.json b/src/lib/runners/zuus.json index 1933f8ad0..1ec9f369a 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,13 +56,16 @@ "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, @@ -79,7 +86,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "p", @@ -90,9 +98,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -106,7 +116,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -117,13 +128,16 @@ "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, @@ -144,7 +158,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "p", @@ -155,9 +170,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -171,7 +188,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -182,13 +200,16 @@ "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, @@ -210,7 +231,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "p", @@ -221,9 +243,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -237,7 +261,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "i", @@ -248,13 +273,16 @@ "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, @@ -271,7 +299,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/zwpj.json b/src/lib/runners/zwpj.json index 46e8af20a..54e870f28 100644 --- a/src/lib/runners/zwpj.json +++ b/src/lib/runners/zwpj.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "d", @@ -38,13 +40,16 @@ "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", @@ -60,7 +65,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/lib/runners/zwut.json b/src/lib/runners/zwut.json index 875801bee..867bcd434 100644 --- a/src/lib/runners/zwut.json +++ b/src/lib/runners/zwut.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "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": "g", @@ -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": false, - "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": { @@ -114,7 +124,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -125,9 +136,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -142,7 +155,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -153,9 +167,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -170,7 +186,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -182,7 +199,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -198,7 +216,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -211,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", @@ -228,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", @@ -251,29 +276,37 @@ 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", @@ -293,7 +326,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -305,7 +339,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -319,7 +354,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -332,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": { @@ -354,7 +394,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -366,7 +407,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -378,7 +420,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -393,7 +436,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -404,9 +448,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -421,7 +467,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -432,9 +479,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -449,7 +498,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -461,7 +511,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -477,7 +528,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -490,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", @@ -507,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", @@ -530,29 +588,37 @@ 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, @@ -573,7 +639,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -585,7 +652,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -599,7 +667,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -612,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": { @@ -634,7 +707,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -646,7 +720,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -658,7 +733,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -673,7 +749,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -684,9 +761,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -701,7 +780,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -712,9 +792,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -729,7 +811,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -741,7 +824,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -757,7 +841,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -770,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", @@ -787,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", @@ -810,29 +901,37 @@ 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, @@ -854,7 +953,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -866,7 +966,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -880,7 +981,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -893,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": { @@ -915,7 +1021,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -927,7 +1034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -939,7 +1047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -954,7 +1063,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -965,9 +1075,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -982,7 +1094,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -993,9 +1106,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1010,7 +1125,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1022,7 +1138,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1038,7 +1155,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1051,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", @@ -1068,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": { @@ -1092,7 +1216,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1104,7 +1229,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1118,7 +1244,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1131,37 +1258,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 }, "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, @@ -1182,7 +1320,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1194,7 +1333,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1208,7 +1348,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1221,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": { @@ -1243,7 +1388,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1255,7 +1401,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1267,7 +1414,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1282,7 +1430,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1293,9 +1442,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1310,7 +1461,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1321,9 +1473,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1338,7 +1492,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1350,7 +1505,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1366,7 +1522,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1379,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", @@ -1396,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": { @@ -1420,7 +1583,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1432,7 +1596,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1446,7 +1611,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1459,37 +1625,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 }, "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, @@ -1507,7 +1684,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1519,7 +1697,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1534,7 +1713,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1545,9 +1725,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1562,7 +1744,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1573,9 +1756,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1590,7 +1775,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1602,7 +1788,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1618,7 +1805,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1631,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", @@ -1648,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": { @@ -1672,7 +1866,8 @@ 3 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1684,7 +1879,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1698,7 +1894,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1711,31 +1908,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 }, "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, @@ -1753,7 +1959,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1765,7 +1972,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1780,7 +1988,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -1791,9 +2000,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1808,7 +2019,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -1819,9 +2031,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -1836,7 +2050,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1848,7 +2063,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1864,7 +2080,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -1877,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", @@ -1894,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": { @@ -1918,7 +2141,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1930,7 +2154,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -1944,7 +2169,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -1957,31 +2183,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 }, "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -1999,7 +2234,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2011,7 +2247,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2026,7 +2263,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2037,9 +2275,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2054,7 +2294,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2065,9 +2306,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2082,7 +2325,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2094,7 +2338,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2110,7 +2355,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2123,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", @@ -2140,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": { @@ -2164,7 +2416,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2176,7 +2429,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2190,7 +2444,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -2203,31 +2458,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 }, "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, @@ -2246,7 +2510,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2258,7 +2523,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2273,7 +2539,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2284,9 +2551,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2301,7 +2570,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2312,9 +2582,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2329,7 +2601,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2341,7 +2614,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2357,7 +2631,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2370,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", @@ -2387,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": { @@ -2411,7 +2692,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2423,7 +2705,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2437,7 +2720,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2451,7 +2735,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2463,7 +2748,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2479,7 +2765,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2492,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", @@ -2509,39 +2798,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -2559,7 +2860,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2571,7 +2873,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2586,7 +2889,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2597,9 +2901,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2614,7 +2920,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2625,9 +2932,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2642,7 +2951,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2654,7 +2964,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2670,7 +2981,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2683,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", @@ -2700,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": { @@ -2724,7 +3042,8 @@ 3 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2736,7 +3055,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2750,7 +3070,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2764,7 +3085,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2776,7 +3098,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2792,7 +3115,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -2805,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", @@ -2822,39 +3148,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -2872,7 +3210,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2884,7 +3223,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2899,7 +3239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -2910,9 +3251,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2927,7 +3270,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -2938,9 +3282,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -2955,7 +3301,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2969,7 +3316,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -2983,7 +3331,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -2995,7 +3344,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3011,7 +3361,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3024,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", @@ -3041,33 +3394,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": "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, @@ -3085,7 +3448,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3097,7 +3461,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3112,7 +3477,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3123,9 +3489,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3140,7 +3508,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3151,9 +3520,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3168,7 +3539,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3182,7 +3554,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3196,7 +3569,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3208,7 +3582,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3224,7 +3599,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3237,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", @@ -3254,33 +3632,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": "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -3298,7 +3686,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3310,7 +3699,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3325,7 +3715,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3336,9 +3727,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3353,7 +3746,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3364,9 +3758,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3381,7 +3777,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3395,7 +3792,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -3409,7 +3807,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3421,7 +3820,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3437,7 +3837,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3450,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", @@ -3467,33 +3870,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": "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, @@ -3512,7 +3925,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3524,7 +3938,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3539,7 +3954,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3550,9 +3966,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3567,7 +3985,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3578,9 +3997,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3595,7 +4016,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3610,7 +4032,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3621,9 +4044,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3637,7 +4062,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3649,7 +4075,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3665,7 +4092,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3678,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", @@ -3695,33 +4125,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": "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -3739,7 +4179,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3751,7 +4192,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3766,7 +4208,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -3777,9 +4220,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3794,7 +4239,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3805,9 +4251,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3822,7 +4270,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3837,7 +4286,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -3848,9 +4298,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -3864,7 +4316,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3876,7 +4329,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3892,7 +4346,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -3905,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", @@ -3922,33 +4379,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": "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -3966,7 +4433,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3978,7 +4446,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -3993,7 +4462,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4004,9 +4474,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4021,7 +4493,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4032,9 +4505,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4049,7 +4524,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4061,7 +4537,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4077,7 +4554,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4090,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", @@ -4107,27 +4587,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 }, - "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, @@ -4145,7 +4633,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4157,7 +4646,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4172,7 +4662,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4183,9 +4674,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4200,7 +4693,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4211,9 +4705,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4228,7 +4724,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4240,7 +4737,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4256,7 +4754,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4269,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", @@ -4286,27 +4787,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 }, - "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 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -4324,7 +4833,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4336,7 +4846,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4351,7 +4862,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4362,9 +4874,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4379,7 +4893,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4390,9 +4905,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4407,7 +4924,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4419,7 +4937,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4435,7 +4954,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -4448,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", @@ -4465,27 +4987,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 }, - "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, @@ -4504,7 +5034,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4516,7 +5047,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4531,7 +5063,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4542,9 +5075,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4559,7 +5094,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4570,9 +5106,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4587,7 +5125,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4599,7 +5138,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4615,7 +5155,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4629,7 +5170,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4640,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", @@ -4659,27 +5204,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewAfter", "activePriority": 1, @@ -4697,7 +5250,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4709,7 +5263,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4724,7 +5279,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4735,9 +5291,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4752,7 +5310,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4763,9 +5322,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4780,7 +5341,8 @@ 2 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4792,7 +5354,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4808,7 +5371,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4822,7 +5386,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4833,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", @@ -4852,27 +5420,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 }, - "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 }, "previouslyChangedExpressionState": "betaReducePreviewCrossed", "activePriority": 1, @@ -4890,7 +5466,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4902,7 +5479,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4917,7 +5495,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -4928,9 +5507,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -4944,7 +5525,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -4960,7 +5542,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -4974,7 +5557,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -4985,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", @@ -5004,21 +5591,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 }, "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, @@ -5036,7 +5629,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5048,7 +5642,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5063,7 +5658,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5074,9 +5670,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5090,7 +5688,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5106,7 +5705,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5120,7 +5720,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5131,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", @@ -5150,21 +5754,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 }, "state": "showFuncUnbound", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "showFuncUnbound", "activePriority": 1, @@ -5182,7 +5792,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5194,7 +5805,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5209,7 +5821,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -5220,9 +5833,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -5236,7 +5851,8 @@ 1 ], "emphasizePriority": true, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -5252,7 +5868,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -5266,7 +5883,8 @@ 2 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -5277,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", @@ -5296,21 +5917,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 }, "state": "needsAlphaConvert", "type": "call", - "priority": 1 + "priority": 1, + "maxNestedFunctionDepth": 2 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 3 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 4 }, "previouslyChangedExpressionState": "needsAlphaConvert", "activePriority": 1, diff --git a/src/lib/runners/zwvj.json b/src/lib/runners/zwvj.json index 7bfebfa86..3846f45ba 100644 --- a/src/lib/runners/zwvj.json +++ b/src/lib/runners/zwvj.json @@ -14,7 +14,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -26,7 +27,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -42,7 +44,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "g", @@ -55,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", @@ -72,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": { @@ -94,7 +103,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -106,7 +116,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -118,7 +129,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -133,7 +145,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "f", @@ -144,9 +157,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -161,7 +176,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -172,9 +188,11 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, - "type": "function" + "type": "function", + "maxNestedFunctionDepth": 1 }, "func": { "arg": { @@ -189,7 +207,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -201,7 +220,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -217,7 +237,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "d", @@ -230,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", @@ -247,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", @@ -270,29 +297,37 @@ 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", diff --git a/src/lib/runners/zxkq.json b/src/lib/runners/zxkq.json index 8d9e6d652..57d1d9ce0 100644 --- a/src/lib/runners/zxkq.json +++ b/src/lib/runners/zxkq.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -43,7 +45,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "name": "i", @@ -56,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", @@ -73,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", @@ -90,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", @@ -107,15 +116,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 }, "numLeafNodes": 5, "containerState": "ready", diff --git a/src/lib/runners/zzhq.json b/src/lib/runners/zzhq.json index 97fcc081b..77c04073c 100644 --- a/src/lib/runners/zzhq.json +++ b/src/lib/runners/zzhq.json @@ -11,7 +11,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "arg": { @@ -23,7 +24,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "c", @@ -34,11 +36,14 @@ "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", diff --git a/src/lib/runners/zzxj.json b/src/lib/runners/zzxj.json index 592dbb331..af4944321 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,13 +40,16 @@ "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, diff --git a/src/lib/runners/zzyu.json b/src/lib/runners/zzyu.json index f34a30340..c91ee06a1 100644 --- a/src/lib/runners/zzyu.json +++ b/src/lib/runners/zzyu.json @@ -13,7 +13,8 @@ ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "func": { "arg": { @@ -27,7 +28,8 @@ 1 ], "emphasizePriority": false, - "bound": false + "bound": false, + "maxNestedFunctionDepth": 0 }, "body": { "name": "k", @@ -38,13 +40,16 @@ "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", @@ -60,7 +65,8 @@ "argPriorityAgg": [], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": true + "bound": true, + "maxNestedFunctionDepth": 0 }, "previouslyChangedExpressionState": "default", "activePriority": 1, diff --git a/src/types/ExpressionTypes.ts b/src/types/ExpressionTypes.ts index 2ed13b4b5..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 { @@ -277,6 +278,7 @@ export interface CallExpression { readonly arg: Expression readonly func: Expression readonly priority: number + readonly maxNestedFunctionDepth?: number } export interface FunctionExpression { @@ -295,6 +297,7 @@ export interface ConditionalExpression { readonly falseCase: Expression readonly priority: number readonly state: ConditionalStates + readonly maxNestedFunctionDepth?: number } export interface BinaryExpression { @@ -304,6 +307,7 @@ export interface BinaryExpression { readonly second: Expression readonly priority: number readonly state: BinaryStates + readonly maxNestedFunctionDepth?: number } export interface RepeatExpression { @@ -311,6 +315,7 @@ export interface RepeatExpression { readonly child: Expression readonly count?: number readonly countVariable?: VariableNames + readonly maxNestedFunctionDepth?: number } export type Expression = From 0e7ec9ea553d5fb0124e78a81eb53015b6198a00 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 19:07:11 -0700 Subject: [PATCH 21/36] Precompute maxNestedFunctionDepth --- src/components/FunctionExpressionBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/FunctionExpressionBox.tsx b/src/components/FunctionExpressionBox.tsx index 6e105d84a..7e939b0c2 100644 --- a/src/components/FunctionExpressionBox.tsx +++ b/src/components/FunctionExpressionBox.tsx @@ -48,7 +48,7 @@ const FunctionExpressionBox = ({ expression }: FunctionExpressionBoxProps) => { > From 31cdcec3f31ba69f7d7c845dd127aa879a532032 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 19:21:27 -0700 Subject: [PATCH 22/36] Fix maxNestedFunctionDepth --- src/components/ExpressionRunnerPrecomputed.tsx | 5 ++++- src/lib/functionDepthsToContainerSize.ts | 15 +++++++++++++++ src/lib/theme/maxWidths.ts | 1 + 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 src/lib/functionDepthsToContainerSize.ts diff --git a/src/components/ExpressionRunnerPrecomputed.tsx b/src/components/ExpressionRunnerPrecomputed.tsx index c94f59cca..4dc9785fe 100644 --- a/src/components/ExpressionRunnerPrecomputed.tsx +++ b/src/components/ExpressionRunnerPrecomputed.tsx @@ -18,6 +18,7 @@ import { ExpressionRunnerConfig } from 'scripts/lib/buildExpressionRunnerConfigF 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' @@ -59,7 +60,6 @@ const ExpressionRunnerPrecomputed = ({ explanationsVisibility, hidePriorities, variableSize, - containerSize, hidePlayButton, hideBottomRightBadges, skipToTheEnd, @@ -159,6 +159,9 @@ const ExpressionRunnerPrecomputed = ({ currentIndex > 0) const progessBarVisible = !hidePlayButton && !skipToTheEnd && (isPlaying || atLeastOneStepTaken) + const containerSize = functionDepthsToContainerSize( + expressionContainers[currentIndex].expression.maxNestedFunctionDepth || 0 + ) return ( { + if (maxNestedFunctionDepth >= 5) { + return 'xs' + } else if (maxNestedFunctionDepth >= 3) { + return 'xsxs' + } else { + return 'xxs' + } +} + +export default functionDepthsToContainerSize 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, From 55892f7dfd95b9becbbfc6279a68a55391304e48 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 19:30:42 -0700 Subject: [PATCH 23/36] Remove variableSize --- ...uildExpressionRunnerConfigFromShorthand.ts | 21 - .../lib/expressionRunnerShorthandConfig.ts | 14 +- scripts/lib/runnerConfigs.ts | 386 ++++-------------- scripts/precomputeExpressionContainers.ts | 4 - src/components/BinaryExpressionBox.tsx | 4 +- .../ExpressionRunnerPrecomputed.tsx | 10 +- src/lib/functionDepthsToContainerSize.ts | 4 +- src/lib/numLeafNodesToVariableSize.ts | 6 +- src/types/ExpressionRunnerTypes.ts | 10 +- src/types/VariableSizes.ts | 1 + 10 files changed, 96 insertions(+), 364 deletions(-) create mode 100644 src/types/VariableSizes.ts diff --git a/scripts/lib/buildExpressionRunnerConfigFromShorthand.ts b/scripts/lib/buildExpressionRunnerConfigFromShorthand.ts index 534f7ce72..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,11 +24,9 @@ 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 @@ -52,9 +49,7 @@ const expressionRunnerDefaults = { hideBottomRightBadges: expressionRunnerContextDefault.hideBottomRightBadges, hideControls: false, explanationsVisibility: 'visible', - variableSize: expressionRunnerContextDefault.variableSize, initializeInstructions: [], - containerSize: 'xxs', skipToTheEnd: false, hidePlayButton: false, speed: 1, @@ -126,8 +121,6 @@ const buildExpressionRunnerConfigFromShorthand = ( showAllShowSteps, explanationsVisibility, bottomRightBadgeOverrides, - variableSize, - containerSize, highlightOverrides, highlightOverrideActiveAfterStart, highlightOverridesCallArgAndFuncUnboundOnly, @@ -144,9 +137,7 @@ const buildExpressionRunnerConfigFromShorthand = ( hidePriorities: !showPriorities, explanationsVisibility, showAllShowSteps, - variableSize, highlightOverridesCallArgAndFuncUnboundOnly, - containerSize, skipAlphaConvert, skipActive, showDefaultAndActiveOnly, @@ -176,8 +167,6 @@ const buildExpressionRunnerConfigFromShorthand = ( skipAlphaConvert, skipActive, showDefaultAndActiveOnly, - variableSize, - containerSize, highlightOverrides, explanationsVisibility } = mergeWithDefault< @@ -193,8 +182,6 @@ const buildExpressionRunnerConfigFromShorthand = ( showAllShowSteps, hideFuncUnboundBadgeOnExplanation, skipToTheEnd, - variableSize, - containerSize, skipAlphaConvert, skipActive, showDefaultAndActiveOnly, @@ -216,8 +203,6 @@ const buildExpressionRunnerConfigFromShorthand = ( showPriorities, explanationsVisibility, showAllShowSteps, - variableSize, - containerSize, nextIterations, skipActive, showDefaultAndActiveOnly @@ -227,8 +212,6 @@ const buildExpressionRunnerConfigFromShorthand = ( >(config, expressionRunnerSingleStepConfigDefault) runnerProps = { - variableSize, - containerSize, initialExpressionContainer, hidePriorities: !showPriorities, hideFuncUnboundBadgeOnExplanation, @@ -251,8 +234,6 @@ const buildExpressionRunnerConfigFromShorthand = ( showPriorities, explanationsVisibility, showAllShowSteps, - variableSize, - containerSize, nextIterations, skipToTheEnd, convert @@ -263,8 +244,6 @@ const buildExpressionRunnerConfigFromShorthand = ( runnerProps = { initialExpressionContainers, - variableSize, - containerSize, hidePriorities: !showPriorities, hideFuncUnboundBadgeOnExplanation, hidePlayButton: false, diff --git a/scripts/lib/expressionRunnerShorthandConfig.ts b/scripts/lib/expressionRunnerShorthandConfig.ts index 6b55b5e3a..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 } @@ -24,8 +23,6 @@ interface ExpressionRunnerSimpleConfig { showAllShowSteps?: ExpressionRunnerProps['showAllShowSteps'] explanationsVisibility?: ExpressionRunnerProps['explanationsVisibility'] bottomRightBadgeOverrides?: ExpressionRunnerProps['bottomRightBadgeOverrides'] - variableSize?: ExpressionRunnerProps['variableSize'] - containerSize?: ExpressionRunnerProps['containerSize'] highlightOverrides?: ExpressionRunnerProps['highlightOverrides'] highlightOverrideActiveAfterStart?: ExpressionRunnerProps['highlightOverrideActiveAfterStart'] highlightOverridesCallArgAndFuncUnboundOnly?: ExpressionRunnerProps['highlightOverridesCallArgAndFuncUnboundOnly'] @@ -46,7 +43,6 @@ export const expressionRunnerPlayButtonOnlyConfigDefault = { showPriorities: false, speed: 1, skipAlphaConvert: false, - variableSize: 'lg', explanationsVisibility: 'hiddenInitialPausedOnly' } @@ -71,8 +67,6 @@ interface ExpressionRunnerPlayButtonOnlyConfig { skipAlphaConvert?: boolean skipActive?: boolean showDefaultAndActiveOnly?: boolean - variableSize?: ExpressionRunnerProps['variableSize'] - containerSize?: ExpressionRunnerProps['containerSize'] highlightOverrides?: ExpressionRunnerProps['highlightOverrides'] explanationsVisibility?: ExpressionRunnerProps['explanationsVisibility'] } @@ -80,8 +74,7 @@ interface ExpressionRunnerPlayButtonOnlyConfig { export const expressionRunnerSingleStepConfigDefault = { hideFuncUnboundBadgeOnExplanation: false, showPriorities: false, - explanationsVisibility: 'hiddenInitialPausedOnly', - variableSize: 'lg' + explanationsVisibility: 'hiddenInitialPausedOnly' } export function isExpressionRunnerSingleStepConfig( @@ -100,8 +93,6 @@ interface ExpressionRunnerSingleStepConfig { skipActive?: boolean showDefaultAndActiveOnly?: boolean nextIterations?: number - variableSize?: ExpressionRunnerProps['variableSize'] - containerSize?: ExpressionRunnerProps['containerSize'] explanationsVisibility?: ExpressionRunnerProps['explanationsVisibility'] showAllShowSteps?: ExpressionRunnerProps['showAllShowSteps'] } @@ -116,7 +107,6 @@ export const expressionRunnerPredefinedConfigDefault = { hideFuncUnboundBadgeOnExplanation: false, showPriorities: false, explanationsVisibility: 'hiddenInitialPausedOnly', - variableSize: 'lg', skipToTheEnd: true } @@ -126,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/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index f6ced65f8..c8e3eef92 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,39 +2531,30 @@ 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 = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.kjff, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const qaoa: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.zxdz, - showPriorities: true, - variableSize: 'xs', - containerSize: 'xs' + showPriorities: true } export const kzkg: ExpressionRunnerShorthandConfig = { @@ -2787,8 +2566,7 @@ export const kzkg: ExpressionRunnerShorthandConfig = { export const jtxf: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.xfso, - showPriorities: true, - variableSize: 'md' + showPriorities: true } export const aklf: ExpressionRunnerShorthandConfig = { @@ -2815,15 +2593,13 @@ export const unxf: ExpressionRunnerShorthandConfig = { export const ddrg: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.uiwq, - showPriorities: true, - variableSize: 'sm' + showPriorities: true } export const spki: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.roso, - showPriorities: true, - variableSize: 'sm' + showPriorities: true } export const lgiv: ExpressionRunnerShorthandConfig = { @@ -2839,8 +2615,6 @@ export const xbki: ExpressionRunnerShorthandConfig = { skipToTheEnd: false, initialExpressionContainer: initialExpressionContainers.jvmi, showPriorities: true, - variableSize: 'xxxs', - containerSize: 'xs', speed: 4, showDefaultAndActiveOnly: true } diff --git a/scripts/precomputeExpressionContainers.ts b/scripts/precomputeExpressionContainers.ts index dc56ac3e3..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, @@ -38,8 +36,6 @@ const precomputeFile = (key: string) => { hideControls, explanationsVisibility, hidePriorities, - variableSize, - containerSize, hidePlayButton, hideBottomRightBadges, skipToTheEnd, diff --git a/src/components/BinaryExpressionBox.tsx b/src/components/BinaryExpressionBox.tsx index 3bbecc857..6fa89c20a 100644 --- a/src/components/BinaryExpressionBox.tsx +++ b/src/components/BinaryExpressionBox.tsx @@ -9,14 +9,14 @@ 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 { ExpressionRunnerContextProps } from 'src/types/ExpressionRunnerTypes' import { fontSizes, zIndices } from 'src/lib/theme' +import { VariableSizes } from 'src/types/VariableSizes' interface BinaryExpressionBoxProps { expression: BinaryExpression } -const multiplyIconSize = (size: ExpressionRunnerContextProps['variableSize']) => +const multiplyIconSize = (size: VariableSizes) => ({ lg: fontSizes(1.2), md: fontSizes(1), diff --git a/src/components/ExpressionRunnerPrecomputed.tsx b/src/components/ExpressionRunnerPrecomputed.tsx index 4dc9785fe..958a7c960 100644 --- a/src/components/ExpressionRunnerPrecomputed.tsx +++ b/src/components/ExpressionRunnerPrecomputed.tsx @@ -29,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'] @@ -59,7 +57,6 @@ const ExpressionRunnerPrecomputed = ({ hideControls, explanationsVisibility, hidePriorities, - variableSize, hidePlayButton, hideBottomRightBadges, skipToTheEnd, @@ -162,6 +159,9 @@ const ExpressionRunnerPrecomputed = ({ const containerSize = functionDepthsToContainerSize( expressionContainers[currentIndex].expression.maxNestedFunctionDepth || 0 ) + const variableSize = numLeafNodesToVariableSize( + expressionContainers[currentIndex].numLeafNodes + ) return ( { +): keyof typeof allMaxWidths => { if (maxNestedFunctionDepth >= 5) { return 'xs' } else if (maxNestedFunctionDepth >= 3) { diff --git a/src/lib/numLeafNodesToVariableSize.ts b/src/lib/numLeafNodesToVariableSize.ts index 8e8ae5980..704fe91cb 100644 --- a/src/lib/numLeafNodesToVariableSize.ts +++ b/src/lib/numLeafNodesToVariableSize.ts @@ -1,8 +1,6 @@ -import { ExpressionRunnerProps } from 'src/types/ExpressionRunnerTypes' +import { VariableSizes } from 'src/types/VariableSizes' -const numLeafNodesToVariableSize = ( - numLeafNodes: number -): ExpressionRunnerProps['variableSize'] => { +const numLeafNodesToVariableSize = (numLeafNodes: number): VariableSizes => { if (numLeafNodes <= 5) { return 'lg' } else if (numLeafNodes <= 8) { 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/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' From b093c1d54594f039df0f6311e9256d49b56e8960 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Sun, 29 Sep 2019 19:31:06 -0700 Subject: [PATCH 24/36] Remove variableSize and containerSize --- src/lib/runners/aaov.json | 2 -- src/lib/runners/abnp.json | 2 -- src/lib/runners/aezk.json | 2 -- src/lib/runners/afoh.json | 2 -- src/lib/runners/akik.json | 2 -- src/lib/runners/akjy.json | 2 -- src/lib/runners/aklf.json | 2 -- src/lib/runners/akug.json | 2 -- src/lib/runners/alca.json | 2 -- src/lib/runners/amjx.json | 2 -- src/lib/runners/amoq.json | 2 -- src/lib/runners/anzh.json | 2 -- src/lib/runners/aone.json | 2 -- src/lib/runners/aovj.json | 2 -- src/lib/runners/apuz.json | 2 -- src/lib/runners/auks.json | 2 -- src/lib/runners/avcu.json | 2 -- src/lib/runners/avsl.json | 2 -- src/lib/runners/awbq.json | 2 -- src/lib/runners/awwn.json | 2 -- src/lib/runners/ayok.json | 2 -- src/lib/runners/ayrl.json | 2 -- src/lib/runners/bdme.json | 2 -- src/lib/runners/beiz.json | 2 -- src/lib/runners/bgfl.json | 2 -- src/lib/runners/bgko.json | 2 -- src/lib/runners/bgxi.json | 2 -- src/lib/runners/bhpw.json | 2 -- src/lib/runners/biit.json | 2 -- src/lib/runners/blvt.json | 2 -- src/lib/runners/bndi.json | 2 -- src/lib/runners/bnyo.json | 2 -- src/lib/runners/bras.json | 2 -- src/lib/runners/bwff.json | 2 -- src/lib/runners/bwnp.json | 2 -- src/lib/runners/bxuv.json | 2 -- src/lib/runners/cbmn.json | 2 -- src/lib/runners/cefx.json | 2 -- src/lib/runners/cjxe.json | 2 -- src/lib/runners/cldb.json | 2 -- src/lib/runners/cmla.json | 2 -- src/lib/runners/cowm.json | 2 -- src/lib/runners/cpdy.json | 2 -- src/lib/runners/cpkp.json | 2 -- src/lib/runners/crvj.json | 2 -- src/lib/runners/csqj.json | 2 -- src/lib/runners/cuwg.json | 2 -- src/lib/runners/cvtc.json | 2 -- src/lib/runners/cyyp.json | 2 -- src/lib/runners/dcji.json | 2 -- src/lib/runners/ddrg.json | 2 -- src/lib/runners/deay.json | 2 -- src/lib/runners/dewi.json | 2 -- src/lib/runners/dfjp.json | 2 -- src/lib/runners/dgpx.json | 2 -- src/lib/runners/dgyc.json | 2 -- src/lib/runners/dhiu.json | 2 -- src/lib/runners/dhzf.json | 2 -- src/lib/runners/diis.json | 2 -- src/lib/runners/ditw.json | 2 -- src/lib/runners/dkdt.json | 2 -- src/lib/runners/dkiy.json | 2 -- src/lib/runners/dmrz.json | 2 -- src/lib/runners/dogu.json | 2 -- src/lib/runners/dpaw.json | 2 -- src/lib/runners/dqdv.json | 2 -- src/lib/runners/dqey.json | 2 -- src/lib/runners/dqwh.json | 2 -- src/lib/runners/dtzu.json | 2 -- src/lib/runners/dubm.json | 2 -- src/lib/runners/duuk.json | 2 -- src/lib/runners/dvpl.json | 2 -- src/lib/runners/dwmc.json | 2 -- src/lib/runners/dwzy.json | 2 -- src/lib/runners/dyoq.json | 2 -- src/lib/runners/eagi.json | 2 -- src/lib/runners/ednv.json | 2 -- src/lib/runners/edzu.json | 2 -- src/lib/runners/ehxq.json | 2 -- src/lib/runners/elku.json | 2 -- src/lib/runners/elyq.json | 2 -- src/lib/runners/envj.json | 2 -- src/lib/runners/eozk.json | 2 -- src/lib/runners/epoi.json | 2 -- src/lib/runners/etae.json | 2 -- src/lib/runners/etku.json | 2 -- src/lib/runners/evqx.json | 2 -- src/lib/runners/eweo.json | 2 -- src/lib/runners/ewfr.json | 2 -- src/lib/runners/exbn.json | 2 -- src/lib/runners/ezmz.json | 2 -- src/lib/runners/fclo.json | 2 -- src/lib/runners/fdig.json | 2 -- src/lib/runners/fhkl.json | 2 -- src/lib/runners/fhrd.json | 2 -- src/lib/runners/fkat.json | 2 -- src/lib/runners/fkqu.json | 2 -- src/lib/runners/fkvy.json | 2 -- src/lib/runners/fljg.json | 2 -- src/lib/runners/fogc.json | 2 -- src/lib/runners/fsgq.json | 2 -- src/lib/runners/fton.json | 2 -- src/lib/runners/fxde.json | 2 -- src/lib/runners/fxok.json | 2 -- src/lib/runners/gemh.json | 2 -- src/lib/runners/ggxl.json | 2 -- src/lib/runners/ghwe.json | 2 -- src/lib/runners/glbk.json | 2 -- src/lib/runners/gmgs.json | 2 -- src/lib/runners/gmzn.json | 2 -- src/lib/runners/gngw.json | 2 -- src/lib/runners/gnwm.json | 2 -- src/lib/runners/gpat.json | 2 -- src/lib/runners/grla.json | 2 -- src/lib/runners/gtdu.json | 2 -- src/lib/runners/guhy.json | 2 -- src/lib/runners/gvxz.json | 2 -- src/lib/runners/gwtp.json | 2 -- src/lib/runners/hafp.json | 2 -- src/lib/runners/hbbv.json | 2 -- src/lib/runners/hdhy.json | 2 -- src/lib/runners/hdxc.json | 2 -- src/lib/runners/hehx.json | 2 -- src/lib/runners/hhdu.json | 2 -- src/lib/runners/hhjq.json | 2 -- src/lib/runners/hluq.json | 2 -- src/lib/runners/hnyn.json | 2 -- src/lib/runners/htir.json | 2 -- src/lib/runners/hvfb.json | 2 -- src/lib/runners/hvqh.json | 2 -- src/lib/runners/hvqy.json | 2 -- src/lib/runners/hykj.json | 2 -- src/lib/runners/iatt.json | 2 -- src/lib/runners/iczf.json | 2 -- src/lib/runners/ifiq.json | 2 -- src/lib/runners/ifpo.json | 2 -- src/lib/runners/igpn.json | 2 -- src/lib/runners/igrl.json | 2 -- src/lib/runners/ilpo.json | 2 -- src/lib/runners/ilvq.json | 2 -- src/lib/runners/immq.json | 2 -- src/lib/runners/imyd.json | 2 -- src/lib/runners/issq.json | 2 -- src/lib/runners/itbm.json | 2 -- src/lib/runners/ivol.json | 2 -- src/lib/runners/iwmu.json | 2 -- src/lib/runners/izgz.json | 2 -- src/lib/runners/jaqs.json | 2 -- src/lib/runners/jarm.json | 2 -- src/lib/runners/jbam.json | 2 -- src/lib/runners/jbqw.json | 2 -- src/lib/runners/jehv.json | 2 -- src/lib/runners/jguj.json | 2 -- src/lib/runners/jiqb.json | 2 -- src/lib/runners/jiua.json | 2 -- src/lib/runners/jjet.json | 2 -- src/lib/runners/jjjh.json | 2 -- src/lib/runners/jmmp.json | 2 -- src/lib/runners/joaq.json | 2 -- src/lib/runners/jsvg.json | 2 -- src/lib/runners/jtxf.json | 2 -- src/lib/runners/jwah.json | 2 -- src/lib/runners/jwce.json | 2 -- src/lib/runners/jwdn.json | 2 -- src/lib/runners/jwue.json | 2 -- src/lib/runners/jwzh.json | 2 -- src/lib/runners/jxvy.json | 2 -- src/lib/runners/jyqf.json | 2 -- src/lib/runners/kbnn.json | 2 -- src/lib/runners/kdgv.json | 2 -- src/lib/runners/keck.json | 2 -- src/lib/runners/kiiq.json | 2 -- src/lib/runners/kizi.json | 2 -- src/lib/runners/kjba.json | 2 -- src/lib/runners/kmyl.json | 2 -- src/lib/runners/knhw.json | 2 -- src/lib/runners/kosw.json | 2 -- src/lib/runners/kvso.json | 2 -- src/lib/runners/kwyy.json | 2 -- src/lib/runners/kzkg.json | 2 -- src/lib/runners/laea.json | 2 -- src/lib/runners/ldqk.json | 2 -- src/lib/runners/lgiv.json | 2 -- src/lib/runners/lipt.json | 2 -- src/lib/runners/lizi.json | 2 -- src/lib/runners/loai.json | 2 -- src/lib/runners/ltpe.json | 2 -- src/lib/runners/lwoq.json | 2 -- src/lib/runners/lxgj.json | 2 -- src/lib/runners/lxhc.json | 2 -- src/lib/runners/lxrk.json | 2 -- src/lib/runners/mbje.json | 2 -- src/lib/runners/mcug.json | 2 -- src/lib/runners/mepb.json | 2 -- src/lib/runners/mhgm.json | 2 -- src/lib/runners/mhyv.json | 2 -- src/lib/runners/mibj.json | 2 -- src/lib/runners/mifg.json | 2 -- src/lib/runners/mlnt.json | 2 -- src/lib/runners/mqvu.json | 2 -- src/lib/runners/msiw.json | 2 -- src/lib/runners/msrk.json | 2 -- src/lib/runners/mutg.json | 2 -- src/lib/runners/myjz.json | 2 -- src/lib/runners/mzqc.json | 2 -- src/lib/runners/mzys.json | 2 -- src/lib/runners/ngxc.json | 2 -- src/lib/runners/nhqo.json | 2 -- src/lib/runners/niwv.json | 2 -- src/lib/runners/nlbn.json | 2 -- src/lib/runners/nlyu.json | 2 -- src/lib/runners/nmbt.json | 2 -- src/lib/runners/nmmz.json | 2 -- src/lib/runners/nmrp.json | 2 -- src/lib/runners/nngz.json | 2 -- src/lib/runners/nntn.json | 2 -- src/lib/runners/nplf.json | 2 -- src/lib/runners/nuco.json | 2 -- src/lib/runners/nvdn.json | 2 -- src/lib/runners/nvqu.json | 2 -- src/lib/runners/oclg.json | 2 -- src/lib/runners/olyw.json | 2 -- src/lib/runners/omwd.json | 2 -- src/lib/runners/oork.json | 2 -- src/lib/runners/ooya.json | 2 -- src/lib/runners/oqpi.json | 2 -- src/lib/runners/osff.json | 2 -- src/lib/runners/osqo.json | 2 -- src/lib/runners/otbe.json | 2 -- src/lib/runners/oukl.json | 2 -- src/lib/runners/ovua.json | 2 -- src/lib/runners/owpg.json | 2 -- src/lib/runners/oykb.json | 2 -- src/lib/runners/ozbe.json | 2 -- src/lib/runners/ozxi.json | 2 -- src/lib/runners/pbhg.json | 2 -- src/lib/runners/pbop.json | 2 -- src/lib/runners/peiy.json | 2 -- src/lib/runners/pgxb.json | 2 -- src/lib/runners/plbv.json | 2 -- src/lib/runners/plde.json | 2 -- src/lib/runners/pmdm.json | 2 -- src/lib/runners/poha.json | 2 -- src/lib/runners/psyv.json | 2 -- src/lib/runners/qaoa.json | 2 -- src/lib/runners/qcmh.json | 2 -- src/lib/runners/qfbk.json | 2 -- src/lib/runners/qgau.json | 2 -- src/lib/runners/qlcq.json | 2 -- src/lib/runners/qoms.json | 2 -- src/lib/runners/qrfw.json | 2 -- src/lib/runners/qrgc.json | 2 -- src/lib/runners/qsnv.json | 2 -- src/lib/runners/qsoa.json | 2 -- src/lib/runners/qwdg.json | 2 -- src/lib/runners/qxob.json | 2 -- src/lib/runners/qycx.json | 2 -- src/lib/runners/rakk.json | 2 -- src/lib/runners/rbup.json | 2 -- src/lib/runners/rdae.json | 2 -- src/lib/runners/rgta.json | 2 -- src/lib/runners/rhcv.json | 2 -- src/lib/runners/rhoa.json | 2 -- src/lib/runners/rico.json | 2 -- src/lib/runners/rivc.json | 2 -- src/lib/runners/rjfy.json | 2 -- src/lib/runners/rjho.json | 2 -- src/lib/runners/rjzw.json | 2 -- src/lib/runners/rlrs.json | 2 -- src/lib/runners/rnug.json | 2 -- src/lib/runners/roko.json | 2 -- src/lib/runners/rqjo.json | 2 -- src/lib/runners/rtza.json | 2 -- src/lib/runners/ruou.json | 2 -- src/lib/runners/rviy.json | 2 -- src/lib/runners/rwuw.json | 2 -- src/lib/runners/rypq.json | 2 -- src/lib/runners/ryqp.json | 2 -- src/lib/runners/sdta.json | 2 -- src/lib/runners/seie.json | 2 -- src/lib/runners/sgfj.json | 2 -- src/lib/runners/sgnp.json | 2 -- src/lib/runners/skoo.json | 2 -- src/lib/runners/smdm.json | 2 -- src/lib/runners/snlf.json | 2 -- src/lib/runners/spga.json | 2 -- src/lib/runners/spki.json | 2 -- src/lib/runners/sskt.json | 2 -- src/lib/runners/sucz.json | 2 -- src/lib/runners/svbd.json | 2 -- src/lib/runners/sxnt.json | 2 -- src/lib/runners/tfsi.json | 2 -- src/lib/runners/thbw.json | 2 -- src/lib/runners/thkn.json | 2 -- src/lib/runners/tjaf.json | 2 -- src/lib/runners/toem.json | 2 -- src/lib/runners/tpyg.json | 2 -- src/lib/runners/udxn.json | 2 -- src/lib/runners/uexo.json | 2 -- src/lib/runners/ugvz.json | 2 -- src/lib/runners/uhqo.json | 2 -- src/lib/runners/uiwl.json | 2 -- src/lib/runners/unxf.json | 2 -- src/lib/runners/uppk.json | 2 -- src/lib/runners/uvmv.json | 2 -- src/lib/runners/uwma.json | 2 -- src/lib/runners/uwyn.json | 2 -- src/lib/runners/vcqp.json | 2 -- src/lib/runners/vdhd.json | 2 -- src/lib/runners/veft.json | 2 -- src/lib/runners/vfdw.json | 2 -- src/lib/runners/vhte.json | 2 -- src/lib/runners/vilr.json | 2 -- src/lib/runners/vlhb.json | 2 -- src/lib/runners/vlob.json | 2 -- src/lib/runners/vmkg.json | 2 -- src/lib/runners/voeb.json | 2 -- src/lib/runners/vowa.json | 2 -- src/lib/runners/vozu.json | 2 -- src/lib/runners/vqwp.json | 2 -- src/lib/runners/vqyl.json | 2 -- src/lib/runners/vsvt.json | 2 -- src/lib/runners/vvjn.json | 2 -- src/lib/runners/vwvb.json | 2 -- src/lib/runners/wcer.json | 2 -- src/lib/runners/wenx.json | 2 -- src/lib/runners/weoz.json | 2 -- src/lib/runners/wgby.json | 2 -- src/lib/runners/wjwu.json | 2 -- src/lib/runners/wopl.json | 2 -- src/lib/runners/wqml.json | 2 -- src/lib/runners/wtup.json | 2 -- src/lib/runners/wunw.json | 2 -- src/lib/runners/wwtl.json | 2 -- src/lib/runners/wzqv.json | 2 -- src/lib/runners/xbki.json | 2 -- src/lib/runners/xhdq.json | 2 -- src/lib/runners/xhul.json | 2 -- src/lib/runners/xjzx.json | 2 -- src/lib/runners/xkcm.json | 2 -- src/lib/runners/xlgb.json | 2 -- src/lib/runners/xmqp.json | 2 -- src/lib/runners/xpks.json | 2 -- src/lib/runners/xqjd.json | 2 -- src/lib/runners/xusi.json | 2 -- src/lib/runners/xwzc.json | 2 -- src/lib/runners/xxan.json | 2 -- src/lib/runners/yabb.json | 2 -- src/lib/runners/ybne.json | 2 -- src/lib/runners/ycpk.json | 2 -- src/lib/runners/ycxr.json | 2 -- src/lib/runners/yfwd.json | 2 -- src/lib/runners/yiri.json | 2 -- src/lib/runners/yjur.json | 2 -- src/lib/runners/ykqf.json | 2 -- src/lib/runners/ylav.json | 2 -- src/lib/runners/ynoy.json | 2 -- src/lib/runners/ysxf.json | 2 -- src/lib/runners/yxel.json | 2 -- src/lib/runners/yyfi.json | 2 -- src/lib/runners/zahd.json | 2 -- src/lib/runners/zdpf.json | 2 -- src/lib/runners/zemy.json | 2 -- src/lib/runners/zkon.json | 2 -- src/lib/runners/zlrx.json | 2 -- src/lib/runners/zsxo.json | 2 -- src/lib/runners/zuus.json | 2 -- src/lib/runners/zwpj.json | 2 -- src/lib/runners/zwut.json | 2 -- src/lib/runners/zwvj.json | 2 -- src/lib/runners/zxkq.json | 2 -- src/lib/runners/zzhq.json | 2 -- src/lib/runners/zzxj.json | 2 -- src/lib/runners/zzyu.json | 2 -- 374 files changed, 748 deletions(-) diff --git a/src/lib/runners/aaov.json b/src/lib/runners/aaov.json index ae38b3780..90698df1f 100644 --- a/src/lib/runners/aaov.json +++ b/src/lib/runners/aaov.json @@ -190,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 774456da9..9abcc947e 100644 --- a/src/lib/runners/abnp.json +++ b/src/lib/runners/abnp.json @@ -98,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 48f9f33da..ce1bbbbf3 100644 --- a/src/lib/runners/aezk.json +++ b/src/lib/runners/aezk.json @@ -99,8 +99,6 @@ "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 6bd6714bd..5fdffe909 100644 --- a/src/lib/runners/afoh.json +++ b/src/lib/runners/afoh.json @@ -258,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 f98dedfe4..d0d14e667 100644 --- a/src/lib/runners/akik.json +++ b/src/lib/runners/akik.json @@ -2733,8 +2733,6 @@ "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 34a3e9d95..4df515dfa 100644 --- a/src/lib/runners/akjy.json +++ b/src/lib/runners/akjy.json @@ -977,8 +977,6 @@ "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 0bfbf3f09..d1436ade3 100644 --- a/src/lib/runners/aklf.json +++ b/src/lib/runners/aklf.json @@ -60,8 +60,6 @@ "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 a63f9ee4c..526de6cc2 100644 --- a/src/lib/runners/akug.json +++ b/src/lib/runners/akug.json @@ -232,8 +232,6 @@ "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 91e73d858..21dbf321d 100644 --- a/src/lib/runners/alca.json +++ b/src/lib/runners/alca.json @@ -97,8 +97,6 @@ "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 7349117c9..dd4e39130 100644 --- a/src/lib/runners/amjx.json +++ b/src/lib/runners/amjx.json @@ -125,8 +125,6 @@ "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 51df453a6..ab6bdb7b7 100644 --- a/src/lib/runners/amoq.json +++ b/src/lib/runners/amoq.json @@ -263,8 +263,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/anzh.json b/src/lib/runners/anzh.json index e94c17620..be425b597 100644 --- a/src/lib/runners/anzh.json +++ b/src/lib/runners/anzh.json @@ -353,8 +353,6 @@ "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 1aa57b459..7d5fdd4e2 100644 --- a/src/lib/runners/aone.json +++ b/src/lib/runners/aone.json @@ -159,8 +159,6 @@ "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 a50f474f4..59d20bdee 100644 --- a/src/lib/runners/aovj.json +++ b/src/lib/runners/aovj.json @@ -65,8 +65,6 @@ "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 1e69866f9..7f624ea40 100644 --- a/src/lib/runners/apuz.json +++ b/src/lib/runners/apuz.json @@ -191,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 289fbf698..19d33ffd1 100644 --- a/src/lib/runners/auks.json +++ b/src/lib/runners/auks.json @@ -97,8 +97,6 @@ "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 96f29d38c..7a833b4c0 100644 --- a/src/lib/runners/avcu.json +++ b/src/lib/runners/avcu.json @@ -157,8 +157,6 @@ "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 bd50b04e7..12a8fdbd9 100644 --- a/src/lib/runners/avsl.json +++ b/src/lib/runners/avsl.json @@ -126,8 +126,6 @@ "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 6db32a30f..8c476c188 100644 --- a/src/lib/runners/awbq.json +++ b/src/lib/runners/awbq.json @@ -119,8 +119,6 @@ "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 6b80f1e21..dc7b0c958 100644 --- a/src/lib/runners/awwn.json +++ b/src/lib/runners/awwn.json @@ -231,8 +231,6 @@ "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 bf1d8c1e9..50c911046 100644 --- a/src/lib/runners/ayok.json +++ b/src/lib/runners/ayok.json @@ -328,8 +328,6 @@ "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 d6649b79e..92f95deab 100644 --- a/src/lib/runners/ayrl.json +++ b/src/lib/runners/ayrl.json @@ -118,8 +118,6 @@ "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 4958f2d14..5d2144327 100644 --- a/src/lib/runners/bdme.json +++ b/src/lib/runners/bdme.json @@ -61,8 +61,6 @@ "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 d47be8e8b..5e1b43a87 100644 --- a/src/lib/runners/beiz.json +++ b/src/lib/runners/beiz.json @@ -862,8 +862,6 @@ "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 5cfbb2117..faad56caa 100644 --- a/src/lib/runners/bgfl.json +++ b/src/lib/runners/bgfl.json @@ -23,8 +23,6 @@ "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 eca657332..154683116 100644 --- a/src/lib/runners/bgko.json +++ b/src/lib/runners/bgko.json @@ -264,8 +264,6 @@ "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 ef499f28a..1ad5f99e7 100644 --- a/src/lib/runners/bgxi.json +++ b/src/lib/runners/bgxi.json @@ -97,8 +97,6 @@ "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 d7ba21fc1..ee718c9b1 100644 --- a/src/lib/runners/bhpw.json +++ b/src/lib/runners/bhpw.json @@ -23,8 +23,6 @@ "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 cca5bf799..602748a78 100644 --- a/src/lib/runners/biit.json +++ b/src/lib/runners/biit.json @@ -23,8 +23,6 @@ "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 5382e859b..a641a6445 100644 --- a/src/lib/runners/blvt.json +++ b/src/lib/runners/blvt.json @@ -135,8 +135,6 @@ "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 474173d3a..001be348d 100644 --- a/src/lib/runners/bndi.json +++ b/src/lib/runners/bndi.json @@ -23,8 +23,6 @@ "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 2a145c559..e24a708c6 100644 --- a/src/lib/runners/bnyo.json +++ b/src/lib/runners/bnyo.json @@ -529,8 +529,6 @@ "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 812db71c8..baea3a475 100644 --- a/src/lib/runners/bras.json +++ b/src/lib/runners/bras.json @@ -531,8 +531,6 @@ "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 61394216a..e5ec8dd71 100644 --- a/src/lib/runners/bwff.json +++ b/src/lib/runners/bwff.json @@ -98,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/bwnp.json b/src/lib/runners/bwnp.json index 43746d588..9c1dc0941 100644 --- a/src/lib/runners/bwnp.json +++ b/src/lib/runners/bwnp.json @@ -26,8 +26,6 @@ "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 3a9c856bd..fc5835efb 100644 --- a/src/lib/runners/bxuv.json +++ b/src/lib/runners/bxuv.json @@ -353,8 +353,6 @@ "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 88f590e5f..986836d96 100644 --- a/src/lib/runners/cbmn.json +++ b/src/lib/runners/cbmn.json @@ -242,8 +242,6 @@ "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 1c2a23dda..c10180803 100644 --- a/src/lib/runners/cefx.json +++ b/src/lib/runners/cefx.json @@ -355,8 +355,6 @@ "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 0a1cca926..b577c9ffe 100644 --- a/src/lib/runners/cjxe.json +++ b/src/lib/runners/cjxe.json @@ -118,8 +118,6 @@ "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 9c9b49775..b620db57f 100644 --- a/src/lib/runners/cldb.json +++ b/src/lib/runners/cldb.json @@ -241,8 +241,6 @@ "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 9f56fe2a9..3b36fe884 100644 --- a/src/lib/runners/cmla.json +++ b/src/lib/runners/cmla.json @@ -76,8 +76,6 @@ "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 ce796eca5..de40dbc3a 100644 --- a/src/lib/runners/cowm.json +++ b/src/lib/runners/cowm.json @@ -76,8 +76,6 @@ "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 ada375682..cb021ad5c 100644 --- a/src/lib/runners/cpdy.json +++ b/src/lib/runners/cpdy.json @@ -249,8 +249,6 @@ "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 fd9224a2e..d655cf84f 100644 --- a/src/lib/runners/cpkp.json +++ b/src/lib/runners/cpkp.json @@ -23,8 +23,6 @@ "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 993074f64..8ae94f8be 100644 --- a/src/lib/runners/crvj.json +++ b/src/lib/runners/crvj.json @@ -80,8 +80,6 @@ "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 cc6fd58ed..50ad7abbe 100644 --- a/src/lib/runners/csqj.json +++ b/src/lib/runners/csqj.json @@ -518,8 +518,6 @@ "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 2823906a8..0eaffdd5e 100644 --- a/src/lib/runners/cuwg.json +++ b/src/lib/runners/cuwg.json @@ -430,8 +430,6 @@ "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 2c53077f4..b119de059 100644 --- a/src/lib/runners/cvtc.json +++ b/src/lib/runners/cvtc.json @@ -97,8 +97,6 @@ "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 8b6ead856..17be88aed 100644 --- a/src/lib/runners/cyyp.json +++ b/src/lib/runners/cyyp.json @@ -213,8 +213,6 @@ "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 06517a1dd..862b32144 100644 --- a/src/lib/runners/dcji.json +++ b/src/lib/runners/dcji.json @@ -110,8 +110,6 @@ "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 index 400d7c4fc..2ad1d4f96 100644 --- a/src/lib/runners/ddrg.json +++ b/src/lib/runners/ddrg.json @@ -143,8 +143,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/deay.json b/src/lib/runners/deay.json index b467b85c3..1ee9b7b31 100644 --- a/src/lib/runners/deay.json +++ b/src/lib/runners/deay.json @@ -112,8 +112,6 @@ "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 f00c7c8c7..4b5a6262a 100644 --- a/src/lib/runners/dewi.json +++ b/src/lib/runners/dewi.json @@ -158,8 +158,6 @@ "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 d013f79c0..f37a97845 100644 --- a/src/lib/runners/dfjp.json +++ b/src/lib/runners/dfjp.json @@ -178,8 +178,6 @@ "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 a1a3009e5..44ca175f6 100644 --- a/src/lib/runners/dgpx.json +++ b/src/lib/runners/dgpx.json @@ -112,8 +112,6 @@ "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 14ec1b043..4c27b9f5c 100644 --- a/src/lib/runners/dgyc.json +++ b/src/lib/runners/dgyc.json @@ -45,8 +45,6 @@ "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 0075dcd5e..f9ce8dadf 100644 --- a/src/lib/runners/dhiu.json +++ b/src/lib/runners/dhiu.json @@ -1312,8 +1312,6 @@ "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 234435a26..f413994c2 100644 --- a/src/lib/runners/dhzf.json +++ b/src/lib/runners/dhzf.json @@ -76,8 +76,6 @@ "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 0d44d4e35..2da8e36f4 100644 --- a/src/lib/runners/diis.json +++ b/src/lib/runners/diis.json @@ -354,8 +354,6 @@ "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 ce37354ec..6f1b37ea3 100644 --- a/src/lib/runners/ditw.json +++ b/src/lib/runners/ditw.json @@ -45,8 +45,6 @@ "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 ef65af3cc..9cdc6b66d 100644 --- a/src/lib/runners/dkdt.json +++ b/src/lib/runners/dkdt.json @@ -78,8 +78,6 @@ "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 23a03c1cb..70fbc7e81 100644 --- a/src/lib/runners/dkiy.json +++ b/src/lib/runners/dkiy.json @@ -97,8 +97,6 @@ "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 dc1475584..5070fb88b 100644 --- a/src/lib/runners/dmrz.json +++ b/src/lib/runners/dmrz.json @@ -118,8 +118,6 @@ "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 d2e694013..c64b4ba93 100644 --- a/src/lib/runners/dogu.json +++ b/src/lib/runners/dogu.json @@ -60,8 +60,6 @@ "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 f39adaa3b..ada0b0479 100644 --- a/src/lib/runners/dpaw.json +++ b/src/lib/runners/dpaw.json @@ -529,8 +529,6 @@ "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 ad55b5cf2..dc3fac471 100644 --- a/src/lib/runners/dqdv.json +++ b/src/lib/runners/dqdv.json @@ -76,8 +76,6 @@ "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 29ec1121d..6104ec517 100644 --- a/src/lib/runners/dqey.json +++ b/src/lib/runners/dqey.json @@ -82,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 b46f0c3fd..c3082e763 100644 --- a/src/lib/runners/dqwh.json +++ b/src/lib/runners/dqwh.json @@ -58,8 +58,6 @@ "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 48d38db33..1b9559fca 100644 --- a/src/lib/runners/dtzu.json +++ b/src/lib/runners/dtzu.json @@ -100,8 +100,6 @@ "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 088c33880..f914e451d 100644 --- a/src/lib/runners/dubm.json +++ b/src/lib/runners/dubm.json @@ -139,8 +139,6 @@ "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 1b7dae304..9a2fc9dd4 100644 --- a/src/lib/runners/duuk.json +++ b/src/lib/runners/duuk.json @@ -139,8 +139,6 @@ "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 7383fba30..01d3ff928 100644 --- a/src/lib/runners/dvpl.json +++ b/src/lib/runners/dvpl.json @@ -134,8 +134,6 @@ "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 4b3c91ff0..457d80a81 100644 --- a/src/lib/runners/dwmc.json +++ b/src/lib/runners/dwmc.json @@ -13121,8 +13121,6 @@ "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 46bb1cc2b..59467866f 100644 --- a/src/lib/runners/dwzy.json +++ b/src/lib/runners/dwzy.json @@ -54,8 +54,6 @@ "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 40f4244f3..2c9178ae2 100644 --- a/src/lib/runners/dyoq.json +++ b/src/lib/runners/dyoq.json @@ -228,8 +228,6 @@ "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 4f4b5e830..298b5445a 100644 --- a/src/lib/runners/eagi.json +++ b/src/lib/runners/eagi.json @@ -109,8 +109,6 @@ "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 bf1af6f49..f62f003b8 100644 --- a/src/lib/runners/ednv.json +++ b/src/lib/runners/ednv.json @@ -67,8 +67,6 @@ "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 124e4d5a1..7cac2d4f1 100644 --- a/src/lib/runners/edzu.json +++ b/src/lib/runners/edzu.json @@ -181,8 +181,6 @@ "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 11a8f5f1f..d9c3e3360 100644 --- a/src/lib/runners/ehxq.json +++ b/src/lib/runners/ehxq.json @@ -157,8 +157,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, diff --git a/src/lib/runners/elku.json b/src/lib/runners/elku.json index 2efd5ff42..aaf6c3b1e 100644 --- a/src/lib/runners/elku.json +++ b/src/lib/runners/elku.json @@ -60,8 +60,6 @@ "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 47f24efa5..ed19677e7 100644 --- a/src/lib/runners/elyq.json +++ b/src/lib/runners/elyq.json @@ -54,8 +54,6 @@ "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 94213fa4e..502055baf 100644 --- a/src/lib/runners/envj.json +++ b/src/lib/runners/envj.json @@ -134,8 +134,6 @@ "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 546545a01..02832ba48 100644 --- a/src/lib/runners/eozk.json +++ b/src/lib/runners/eozk.json @@ -76,8 +76,6 @@ "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 436d4caa0..6065a9209 100644 --- a/src/lib/runners/epoi.json +++ b/src/lib/runners/epoi.json @@ -115,8 +115,6 @@ "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 5f04758e6..615a0ee55 100644 --- a/src/lib/runners/etae.json +++ b/src/lib/runners/etae.json @@ -99,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 3be06b5e3..4c31f2627 100644 --- a/src/lib/runners/etku.json +++ b/src/lib/runners/etku.json @@ -49,8 +49,6 @@ "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 4e89cc6fa..108901871 100644 --- a/src/lib/runners/evqx.json +++ b/src/lib/runners/evqx.json @@ -118,8 +118,6 @@ "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 22dfd7374..7081cbef3 100644 --- a/src/lib/runners/eweo.json +++ b/src/lib/runners/eweo.json @@ -157,8 +157,6 @@ "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 6baa36128..63386bf67 100644 --- a/src/lib/runners/ewfr.json +++ b/src/lib/runners/ewfr.json @@ -26,8 +26,6 @@ "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 e8e616fc2..d10585890 100644 --- a/src/lib/runners/exbn.json +++ b/src/lib/runners/exbn.json @@ -2733,8 +2733,6 @@ "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 f675c8ab5..20bb3c353 100644 --- a/src/lib/runners/ezmz.json +++ b/src/lib/runners/ezmz.json @@ -229,8 +229,6 @@ "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 d561d31d2..42124b368 100644 --- a/src/lib/runners/fclo.json +++ b/src/lib/runners/fclo.json @@ -81,8 +81,6 @@ "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 a1bab3d16..24af0c95e 100644 --- a/src/lib/runners/fdig.json +++ b/src/lib/runners/fdig.json @@ -46,8 +46,6 @@ "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 bb6ce5f5d..1e28edcf5 100644 --- a/src/lib/runners/fhkl.json +++ b/src/lib/runners/fhkl.json @@ -377,8 +377,6 @@ "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 f92b64593..bf0d0b2a1 100644 --- a/src/lib/runners/fhrd.json +++ b/src/lib/runners/fhrd.json @@ -97,8 +97,6 @@ "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 4cb80fb16..f8fdf459f 100644 --- a/src/lib/runners/fkat.json +++ b/src/lib/runners/fkat.json @@ -169,8 +169,6 @@ "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 b934600c5..4bdd46b8f 100644 --- a/src/lib/runners/fkqu.json +++ b/src/lib/runners/fkqu.json @@ -126,8 +126,6 @@ "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 9606a7619..8d6b16603 100644 --- a/src/lib/runners/fkvy.json +++ b/src/lib/runners/fkvy.json @@ -495,8 +495,6 @@ "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 5021b8056..1bf201c56 100644 --- a/src/lib/runners/fljg.json +++ b/src/lib/runners/fljg.json @@ -211,8 +211,6 @@ "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 fd9224a2e..d655cf84f 100644 --- a/src/lib/runners/fogc.json +++ b/src/lib/runners/fogc.json @@ -23,8 +23,6 @@ "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 663e611d6..324c5af8f 100644 --- a/src/lib/runners/fsgq.json +++ b/src/lib/runners/fsgq.json @@ -2528,8 +2528,6 @@ "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 4ea1f3cc2..e853a7188 100644 --- a/src/lib/runners/fton.json +++ b/src/lib/runners/fton.json @@ -190,8 +190,6 @@ "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 da23186cc..1988eb356 100644 --- a/src/lib/runners/fxde.json +++ b/src/lib/runners/fxde.json @@ -76,8 +76,6 @@ "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 e42ffb44d..5823ec4a0 100644 --- a/src/lib/runners/fxok.json +++ b/src/lib/runners/fxok.json @@ -61,8 +61,6 @@ "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 cf764fe47..b8b537329 100644 --- a/src/lib/runners/gemh.json +++ b/src/lib/runners/gemh.json @@ -23,8 +23,6 @@ "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 7ae69a912..de5154d78 100644 --- a/src/lib/runners/ggxl.json +++ b/src/lib/runners/ggxl.json @@ -45,8 +45,6 @@ "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 bb0c5ff9f..4dcc9cbb0 100644 --- a/src/lib/runners/ghwe.json +++ b/src/lib/runners/ghwe.json @@ -119,8 +119,6 @@ "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 913e0868a..4766bc98c 100644 --- a/src/lib/runners/glbk.json +++ b/src/lib/runners/glbk.json @@ -58,8 +58,6 @@ "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 0534e0496..88490e313 100644 --- a/src/lib/runners/gmgs.json +++ b/src/lib/runners/gmgs.json @@ -139,8 +139,6 @@ "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 5b6ff5930..c6f0bdec1 100644 --- a/src/lib/runners/gmzn.json +++ b/src/lib/runners/gmzn.json @@ -662,8 +662,6 @@ "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 9b264daeb..c514cabdd 100644 --- a/src/lib/runners/gngw.json +++ b/src/lib/runners/gngw.json @@ -663,8 +663,6 @@ "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 4bbcfaccf..e98833c72 100644 --- a/src/lib/runners/gnwm.json +++ b/src/lib/runners/gnwm.json @@ -46,8 +46,6 @@ "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 bc09f6150..265fd6523 100644 --- a/src/lib/runners/gpat.json +++ b/src/lib/runners/gpat.json @@ -3716,8 +3716,6 @@ "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 cbe7c1226..a7f4e9106 100644 --- a/src/lib/runners/grla.json +++ b/src/lib/runners/grla.json @@ -79,8 +79,6 @@ "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 79d222ba5..95f0c8905 100644 --- a/src/lib/runners/gtdu.json +++ b/src/lib/runners/gtdu.json @@ -81,8 +81,6 @@ "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 6a091fff7..fdd28ac5d 100644 --- a/src/lib/runners/guhy.json +++ b/src/lib/runners/guhy.json @@ -61,8 +61,6 @@ "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 1efd484a1..7ed3e094b 100644 --- a/src/lib/runners/gvxz.json +++ b/src/lib/runners/gvxz.json @@ -23,8 +23,6 @@ "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 1bb275570..9751fca6f 100644 --- a/src/lib/runners/gwtp.json +++ b/src/lib/runners/gwtp.json @@ -118,8 +118,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/hafp.json b/src/lib/runners/hafp.json index 6d221e60e..ecb541aaa 100644 --- a/src/lib/runners/hafp.json +++ b/src/lib/runners/hafp.json @@ -355,8 +355,6 @@ "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 3dba88d3d..a837dfb4a 100644 --- a/src/lib/runners/hbbv.json +++ b/src/lib/runners/hbbv.json @@ -61,8 +61,6 @@ "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 267490474..5d912fc1d 100644 --- a/src/lib/runners/hdhy.json +++ b/src/lib/runners/hdhy.json @@ -754,8 +754,6 @@ "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 6e2ef93a9..a82de856a 100644 --- a/src/lib/runners/hdxc.json +++ b/src/lib/runners/hdxc.json @@ -825,8 +825,6 @@ "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 ef5c6362f..5b5c302b7 100644 --- a/src/lib/runners/hehx.json +++ b/src/lib/runners/hehx.json @@ -76,8 +76,6 @@ "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 f346f0524..db1596267 100644 --- a/src/lib/runners/hhdu.json +++ b/src/lib/runners/hhdu.json @@ -76,8 +76,6 @@ "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 b87a06e80..6fd5195d0 100644 --- a/src/lib/runners/hhjq.json +++ b/src/lib/runners/hhjq.json @@ -190,8 +190,6 @@ "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 fb52f8348..d9a388029 100644 --- a/src/lib/runners/hluq.json +++ b/src/lib/runners/hluq.json @@ -432,8 +432,6 @@ "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 fbf84db69..a9963059c 100644 --- a/src/lib/runners/hnyn.json +++ b/src/lib/runners/hnyn.json @@ -754,8 +754,6 @@ "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 b3b1fa183..20fb115cb 100644 --- a/src/lib/runners/htir.json +++ b/src/lib/runners/htir.json @@ -374,8 +374,6 @@ "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 e9bfa6a9b..687441e61 100644 --- a/src/lib/runners/hvfb.json +++ b/src/lib/runners/hvfb.json @@ -216,8 +216,6 @@ "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 674f8c4a8..5bc6965a5 100644 --- a/src/lib/runners/hvqh.json +++ b/src/lib/runners/hvqh.json @@ -38,8 +38,6 @@ "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 68713c3c8..098df4409 100644 --- a/src/lib/runners/hvqy.json +++ b/src/lib/runners/hvqy.json @@ -62,8 +62,6 @@ "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 81adac111..7130eac5a 100644 --- a/src/lib/runners/hykj.json +++ b/src/lib/runners/hykj.json @@ -737,8 +737,6 @@ "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 2180b97ee..d633d4119 100644 --- a/src/lib/runners/iatt.json +++ b/src/lib/runners/iatt.json @@ -78,8 +78,6 @@ "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 fbdbb3168..8846fb6c1 100644 --- a/src/lib/runners/iczf.json +++ b/src/lib/runners/iczf.json @@ -90,8 +90,6 @@ "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 2db42eb68..35e6fdcc6 100644 --- a/src/lib/runners/ifiq.json +++ b/src/lib/runners/ifiq.json @@ -13024,8 +13024,6 @@ "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 c589ed325..940f9fa8d 100644 --- a/src/lib/runners/ifpo.json +++ b/src/lib/runners/ifpo.json @@ -60,8 +60,6 @@ "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 647bb7702..afe72eca7 100644 --- a/src/lib/runners/igpn.json +++ b/src/lib/runners/igpn.json @@ -76,8 +76,6 @@ "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 8b6226417..922b24825 100644 --- a/src/lib/runners/igrl.json +++ b/src/lib/runners/igrl.json @@ -99,8 +99,6 @@ "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 6541b8718..09b053052 100644 --- a/src/lib/runners/ilpo.json +++ b/src/lib/runners/ilpo.json @@ -60,8 +60,6 @@ "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 97424d41f..ea0d367d3 100644 --- a/src/lib/runners/ilvq.json +++ b/src/lib/runners/ilvq.json @@ -97,8 +97,6 @@ "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 a5cfe9cb4..4bf86d898 100644 --- a/src/lib/runners/immq.json +++ b/src/lib/runners/immq.json @@ -76,8 +76,6 @@ "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 9f943adf8..cc9af9277 100644 --- a/src/lib/runners/imyd.json +++ b/src/lib/runners/imyd.json @@ -60,8 +60,6 @@ "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 59975e813..6efb91e0c 100644 --- a/src/lib/runners/issq.json +++ b/src/lib/runners/issq.json @@ -93,8 +93,6 @@ "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 9fa7511e9..550463d42 100644 --- a/src/lib/runners/itbm.json +++ b/src/lib/runners/itbm.json @@ -78,8 +78,6 @@ "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 f56935f7e..fb20d52ed 100644 --- a/src/lib/runners/ivol.json +++ b/src/lib/runners/ivol.json @@ -23,8 +23,6 @@ "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 d2807c58a..5df3a6f52 100644 --- a/src/lib/runners/iwmu.json +++ b/src/lib/runners/iwmu.json @@ -23,8 +23,6 @@ "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 bb0b71a76..5e994c560 100644 --- a/src/lib/runners/izgz.json +++ b/src/lib/runners/izgz.json @@ -548,8 +548,6 @@ "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 6de60fe2a..aef328ccf 100644 --- a/src/lib/runners/jaqs.json +++ b/src/lib/runners/jaqs.json @@ -48,8 +48,6 @@ "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 a5025a517..3772cc853 100644 --- a/src/lib/runners/jarm.json +++ b/src/lib/runners/jarm.json @@ -54,8 +54,6 @@ "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 d320bc876..77b56d5ce 100644 --- a/src/lib/runners/jbam.json +++ b/src/lib/runners/jbam.json @@ -248,8 +248,6 @@ "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 d720603c4..e2cfc5763 100644 --- a/src/lib/runners/jbqw.json +++ b/src/lib/runners/jbqw.json @@ -193,8 +193,6 @@ "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 ef561e891..1805e83f9 100644 --- a/src/lib/runners/jehv.json +++ b/src/lib/runners/jehv.json @@ -67,8 +67,6 @@ "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 e05596560..646320cb1 100644 --- a/src/lib/runners/jguj.json +++ b/src/lib/runners/jguj.json @@ -135,8 +135,6 @@ "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 4efa26a60..53f75d062 100644 --- a/src/lib/runners/jiqb.json +++ b/src/lib/runners/jiqb.json @@ -87,8 +87,6 @@ "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 675706b19..898a35947 100644 --- a/src/lib/runners/jiua.json +++ b/src/lib/runners/jiua.json @@ -159,8 +159,6 @@ "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 494530f9b..255de7c8e 100644 --- a/src/lib/runners/jjet.json +++ b/src/lib/runners/jjet.json @@ -619,8 +619,6 @@ "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 22441a65c..8d598d198 100644 --- a/src/lib/runners/jjjh.json +++ b/src/lib/runners/jjjh.json @@ -72,8 +72,6 @@ "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 638d8a37e..3955327d8 100644 --- a/src/lib/runners/jmmp.json +++ b/src/lib/runners/jmmp.json @@ -81,8 +81,6 @@ "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 c86e1847e..cd35ba0c2 100644 --- a/src/lib/runners/joaq.json +++ b/src/lib/runners/joaq.json @@ -76,8 +76,6 @@ "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 bfcd29937..f2e3e26ee 100644 --- a/src/lib/runners/jsvg.json +++ b/src/lib/runners/jsvg.json @@ -1312,8 +1312,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/jtxf.json b/src/lib/runners/jtxf.json index 2056c1164..71c0c7641 100644 --- a/src/lib/runners/jtxf.json +++ b/src/lib/runners/jtxf.json @@ -67,8 +67,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "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 064c67e54..bfcfa72c4 100644 --- a/src/lib/runners/jwah.json +++ b/src/lib/runners/jwah.json @@ -23,8 +23,6 @@ "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 0fc50ec47..f77fed412 100644 --- a/src/lib/runners/jwce.json +++ b/src/lib/runners/jwce.json @@ -90,8 +90,6 @@ "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 5cb24e961..7dd99122b 100644 --- a/src/lib/runners/jwdn.json +++ b/src/lib/runners/jwdn.json @@ -98,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 7726967fe..a837dfb4a 100644 --- a/src/lib/runners/jwue.json +++ b/src/lib/runners/jwue.json @@ -61,8 +61,6 @@ "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 2191db6b6..414d15024 100644 --- a/src/lib/runners/jwzh.json +++ b/src/lib/runners/jwzh.json @@ -62,8 +62,6 @@ "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 e6500a89c..1be15d6d2 100644 --- a/src/lib/runners/jxvy.json +++ b/src/lib/runners/jxvy.json @@ -23,8 +23,6 @@ "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 d865fa92c..9ca175ba9 100644 --- a/src/lib/runners/jyqf.json +++ b/src/lib/runners/jyqf.json @@ -97,8 +97,6 @@ "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 39940d4da..e7f6c39c2 100644 --- a/src/lib/runners/kbnn.json +++ b/src/lib/runners/kbnn.json @@ -79,8 +79,6 @@ "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 7382e7990..2de8644ac 100644 --- a/src/lib/runners/kdgv.json +++ b/src/lib/runners/kdgv.json @@ -257,8 +257,6 @@ "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 fe5052baf..905145ca8 100644 --- a/src/lib/runners/keck.json +++ b/src/lib/runners/keck.json @@ -62,8 +62,6 @@ "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 8313d6fe8..ec7924b4a 100644 --- a/src/lib/runners/kiiq.json +++ b/src/lib/runners/kiiq.json @@ -23,8 +23,6 @@ "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 8bcb0b7d9..4745730c1 100644 --- a/src/lib/runners/kizi.json +++ b/src/lib/runners/kizi.json @@ -23,8 +23,6 @@ "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 afac8601d..b7352604d 100644 --- a/src/lib/runners/kjba.json +++ b/src/lib/runners/kjba.json @@ -355,8 +355,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/kmyl.json b/src/lib/runners/kmyl.json index 5616ad733..db93bc50a 100644 --- a/src/lib/runners/kmyl.json +++ b/src/lib/runners/kmyl.json @@ -78,8 +78,6 @@ "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 613dd965b..350cbc3c0 100644 --- a/src/lib/runners/knhw.json +++ b/src/lib/runners/knhw.json @@ -61,8 +61,6 @@ "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 abebe4949..639f8a304 100644 --- a/src/lib/runners/kosw.json +++ b/src/lib/runners/kosw.json @@ -169,8 +169,6 @@ "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 35a05becf..66f189f0e 100644 --- a/src/lib/runners/kvso.json +++ b/src/lib/runners/kvso.json @@ -192,8 +192,6 @@ "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 7799f8154..80605572f 100644 --- a/src/lib/runners/kwyy.json +++ b/src/lib/runners/kwyy.json @@ -211,8 +211,6 @@ "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 e7c299e9f..939d7313d 100644 --- a/src/lib/runners/kzkg.json +++ b/src/lib/runners/kzkg.json @@ -60,8 +60,6 @@ "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 5616d68bf..3b819ec89 100644 --- a/src/lib/runners/laea.json +++ b/src/lib/runners/laea.json @@ -98,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/ldqk.json b/src/lib/runners/ldqk.json index 78d22bf22..e912369b9 100644 --- a/src/lib/runners/ldqk.json +++ b/src/lib/runners/ldqk.json @@ -76,8 +76,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/lgiv.json b/src/lib/runners/lgiv.json index ad3288a84..1b83e2383 100644 --- a/src/lib/runners/lgiv.json +++ b/src/lib/runners/lgiv.json @@ -241,8 +241,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "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 d8324ec06..a05d3b9a7 100644 --- a/src/lib/runners/lipt.json +++ b/src/lib/runners/lipt.json @@ -1795,8 +1795,6 @@ "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 52d5d4964..8bfaf44d7 100644 --- a/src/lib/runners/lizi.json +++ b/src/lib/runners/lizi.json @@ -46,8 +46,6 @@ "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 c2ddc6424..7aa0e740d 100644 --- a/src/lib/runners/loai.json +++ b/src/lib/runners/loai.json @@ -60,8 +60,6 @@ "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 e2dd22541..5424dc967 100644 --- a/src/lib/runners/ltpe.json +++ b/src/lib/runners/ltpe.json @@ -192,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 d5ed12530..15639bfca 100644 --- a/src/lib/runners/lwoq.json +++ b/src/lib/runners/lwoq.json @@ -134,8 +134,6 @@ "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 311068ad0..5a055df3d 100644 --- a/src/lib/runners/lxgj.json +++ b/src/lib/runners/lxgj.json @@ -249,8 +249,6 @@ "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 8bc7e2209..e507cc5c8 100644 --- a/src/lib/runners/lxhc.json +++ b/src/lib/runners/lxhc.json @@ -62,8 +62,6 @@ "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 6390f5059..aa580dce4 100644 --- a/src/lib/runners/lxrk.json +++ b/src/lib/runners/lxrk.json @@ -197,8 +197,6 @@ "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 1e250dd68..a94807f97 100644 --- a/src/lib/runners/mbje.json +++ b/src/lib/runners/mbje.json @@ -23,8 +23,6 @@ "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 4a7236d4b..9e0fbb717 100644 --- a/src/lib/runners/mcug.json +++ b/src/lib/runners/mcug.json @@ -65,8 +65,6 @@ "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 b94352a0b..a041cb52f 100644 --- a/src/lib/runners/mepb.json +++ b/src/lib/runners/mepb.json @@ -97,8 +97,6 @@ "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 2dd50b9cb..a28d38df6 100644 --- a/src/lib/runners/mhgm.json +++ b/src/lib/runners/mhgm.json @@ -61,8 +61,6 @@ "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 fc7159953..180d74f6d 100644 --- a/src/lib/runners/mhyv.json +++ b/src/lib/runners/mhyv.json @@ -77,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 7625cde48..287bb6c9f 100644 --- a/src/lib/runners/mibj.json +++ b/src/lib/runners/mibj.json @@ -213,8 +213,6 @@ "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 9fbbc76b9..9e9d87f7b 100644 --- a/src/lib/runners/mifg.json +++ b/src/lib/runners/mifg.json @@ -94,8 +94,6 @@ "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 ed59a19de..8c4531341 100644 --- a/src/lib/runners/mlnt.json +++ b/src/lib/runners/mlnt.json @@ -218,8 +218,6 @@ "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 b2bc10f07..5a428973f 100644 --- a/src/lib/runners/mqvu.json +++ b/src/lib/runners/mqvu.json @@ -22,8 +22,6 @@ "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 eee0e885b..f6ba4ffd4 100644 --- a/src/lib/runners/msiw.json +++ b/src/lib/runners/msiw.json @@ -117,8 +117,6 @@ "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 8d78ea4ba..f9f8184c5 100644 --- a/src/lib/runners/msrk.json +++ b/src/lib/runners/msrk.json @@ -258,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 85d777012..1ceb2ee99 100644 --- a/src/lib/runners/mutg.json +++ b/src/lib/runners/mutg.json @@ -94,8 +94,6 @@ "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 bf1d8c1e9..50c911046 100644 --- a/src/lib/runners/myjz.json +++ b/src/lib/runners/myjz.json @@ -328,8 +328,6 @@ "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 5d7bbca41..5281449f8 100644 --- a/src/lib/runners/mzqc.json +++ b/src/lib/runners/mzqc.json @@ -97,8 +97,6 @@ "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 989333f82..98df4a422 100644 --- a/src/lib/runners/mzys.json +++ b/src/lib/runners/mzys.json @@ -97,8 +97,6 @@ "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 bea9039d1..414d36c0e 100644 --- a/src/lib/runners/ngxc.json +++ b/src/lib/runners/ngxc.json @@ -90,8 +90,6 @@ "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 929e5f8e0..3d8397952 100644 --- a/src/lib/runners/nhqo.json +++ b/src/lib/runners/nhqo.json @@ -211,8 +211,6 @@ "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 8f4ade2bd..6769eb462 100644 --- a/src/lib/runners/niwv.json +++ b/src/lib/runners/niwv.json @@ -211,8 +211,6 @@ "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 b0eff7f96..a351b13b6 100644 --- a/src/lib/runners/nlbn.json +++ b/src/lib/runners/nlbn.json @@ -3679,8 +3679,6 @@ "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 f70b4248d..2cd879c9a 100644 --- a/src/lib/runners/nlyu.json +++ b/src/lib/runners/nlyu.json @@ -97,8 +97,6 @@ "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 d0ae0696b..12083bc29 100644 --- a/src/lib/runners/nmbt.json +++ b/src/lib/runners/nmbt.json @@ -48,8 +48,6 @@ "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 2ddf15b89..4977ce543 100644 --- a/src/lib/runners/nmmz.json +++ b/src/lib/runners/nmmz.json @@ -94,8 +94,6 @@ "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 0acc961ef..70b04ff65 100644 --- a/src/lib/runners/nmrp.json +++ b/src/lib/runners/nmrp.json @@ -2328,8 +2328,6 @@ "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 08cef9e25..054f1f4bf 100644 --- a/src/lib/runners/nngz.json +++ b/src/lib/runners/nngz.json @@ -118,8 +118,6 @@ "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 a583273bd..2fbcf5d68 100644 --- a/src/lib/runners/nntn.json +++ b/src/lib/runners/nntn.json @@ -61,8 +61,6 @@ "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 7259b9ab3..c1d7f5000 100644 --- a/src/lib/runners/nplf.json +++ b/src/lib/runners/nplf.json @@ -60,8 +60,6 @@ "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 8fe064d32..c78a9bea3 100644 --- a/src/lib/runners/nuco.json +++ b/src/lib/runners/nuco.json @@ -210,8 +210,6 @@ "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 91b83a0c0..b5eb53761 100644 --- a/src/lib/runners/nvdn.json +++ b/src/lib/runners/nvdn.json @@ -197,8 +197,6 @@ "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 718100f33..1f61df63e 100644 --- a/src/lib/runners/nvqu.json +++ b/src/lib/runners/nvqu.json @@ -135,8 +135,6 @@ "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 06f60fd5f..bc4e93cfb 100644 --- a/src/lib/runners/oclg.json +++ b/src/lib/runners/oclg.json @@ -76,8 +76,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/olyw.json b/src/lib/runners/olyw.json index d768ec60b..b7098d71e 100644 --- a/src/lib/runners/olyw.json +++ b/src/lib/runners/olyw.json @@ -134,8 +134,6 @@ "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 9e1965321..1904b8f8f 100644 --- a/src/lib/runners/omwd.json +++ b/src/lib/runners/omwd.json @@ -157,8 +157,6 @@ "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 e37290732..480136ed6 100644 --- a/src/lib/runners/oork.json +++ b/src/lib/runners/oork.json @@ -82,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 06f60fd5f..bc4e93cfb 100644 --- a/src/lib/runners/ooya.json +++ b/src/lib/runners/ooya.json @@ -76,8 +76,6 @@ "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 60fcfd80f..a80e5f945 100644 --- a/src/lib/runners/oqpi.json +++ b/src/lib/runners/oqpi.json @@ -3489,8 +3489,6 @@ "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 cf43d3565..fcab3a576 100644 --- a/src/lib/runners/osff.json +++ b/src/lib/runners/osff.json @@ -98,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 9d71c8e80..8d18f50be 100644 --- a/src/lib/runners/osqo.json +++ b/src/lib/runners/osqo.json @@ -23,8 +23,6 @@ "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 8bcb0b7d9..4745730c1 100644 --- a/src/lib/runners/otbe.json +++ b/src/lib/runners/otbe.json @@ -23,8 +23,6 @@ "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 1b4cbb8b3..accd51638 100644 --- a/src/lib/runners/oukl.json +++ b/src/lib/runners/oukl.json @@ -98,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 37957196c..e86ec7f73 100644 --- a/src/lib/runners/ovua.json +++ b/src/lib/runners/ovua.json @@ -13340,8 +13340,6 @@ "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 83aca6f9a..cb82753d3 100644 --- a/src/lib/runners/owpg.json +++ b/src/lib/runners/owpg.json @@ -49,8 +49,6 @@ "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 82f95e180..ae37306ae 100644 --- a/src/lib/runners/oykb.json +++ b/src/lib/runners/oykb.json @@ -135,8 +135,6 @@ "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 5e9204647..1347c2278 100644 --- a/src/lib/runners/ozbe.json +++ b/src/lib/runners/ozbe.json @@ -117,8 +117,6 @@ "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 fabb4c4dd..fde69b724 100644 --- a/src/lib/runners/ozxi.json +++ b/src/lib/runners/ozxi.json @@ -23,8 +23,6 @@ "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 c307ee2b5..caa8beae4 100644 --- a/src/lib/runners/pbhg.json +++ b/src/lib/runners/pbhg.json @@ -98,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 5846e376a..070403de2 100644 --- a/src/lib/runners/pbop.json +++ b/src/lib/runners/pbop.json @@ -241,8 +241,6 @@ "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 8ea4090b2..21ff97390 100644 --- a/src/lib/runners/peiy.json +++ b/src/lib/runners/peiy.json @@ -355,8 +355,6 @@ "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 e991b608c..5b7ca2247 100644 --- a/src/lib/runners/pgxb.json +++ b/src/lib/runners/pgxb.json @@ -67,8 +67,6 @@ "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 bae80e2a5..6761655f4 100644 --- a/src/lib/runners/plbv.json +++ b/src/lib/runners/plbv.json @@ -60,8 +60,6 @@ "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 92e784912..5ca901ce8 100644 --- a/src/lib/runners/plde.json +++ b/src/lib/runners/plde.json @@ -210,8 +210,6 @@ "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 3e3608dcb..3f2fa0b44 100644 --- a/src/lib/runners/pmdm.json +++ b/src/lib/runners/pmdm.json @@ -23,8 +23,6 @@ "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 ffcca9513..b9513f881 100644 --- a/src/lib/runners/poha.json +++ b/src/lib/runners/poha.json @@ -360,8 +360,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/psyv.json b/src/lib/runners/psyv.json index fe115afde..e4441fab8 100644 --- a/src/lib/runners/psyv.json +++ b/src/lib/runners/psyv.json @@ -191,8 +191,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "md", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qaoa.json b/src/lib/runners/qaoa.json index f7b10e559..2343e4dcf 100644 --- a/src/lib/runners/qaoa.json +++ b/src/lib/runners/qaoa.json @@ -375,8 +375,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qcmh.json b/src/lib/runners/qcmh.json index 2142fd905..84f18aa03 100644 --- a/src/lib/runners/qcmh.json +++ b/src/lib/runners/qcmh.json @@ -61,8 +61,6 @@ "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 f86ec9396..98b0f270c 100644 --- a/src/lib/runners/qfbk.json +++ b/src/lib/runners/qfbk.json @@ -99,8 +99,6 @@ "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 23d07c66b..d2e5bf06d 100644 --- a/src/lib/runners/qgau.json +++ b/src/lib/runners/qgau.json @@ -169,8 +169,6 @@ "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 7e1d83e9c..92c790e72 100644 --- a/src/lib/runners/qlcq.json +++ b/src/lib/runners/qlcq.json @@ -211,8 +211,6 @@ "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 9cae3655c..55a00cf01 100644 --- a/src/lib/runners/qoms.json +++ b/src/lib/runners/qoms.json @@ -61,8 +61,6 @@ "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 db9a85da3..650eb7064 100644 --- a/src/lib/runners/qrfw.json +++ b/src/lib/runners/qrfw.json @@ -134,8 +134,6 @@ "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 fd13f4444..8d90bab3f 100644 --- a/src/lib/runners/qrgc.json +++ b/src/lib/runners/qrgc.json @@ -158,8 +158,6 @@ "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 11f16680d..f9fb92cd8 100644 --- a/src/lib/runners/qsnv.json +++ b/src/lib/runners/qsnv.json @@ -92,8 +92,6 @@ "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 36390f8ad..576c3db3f 100644 --- a/src/lib/runners/qsoa.json +++ b/src/lib/runners/qsoa.json @@ -23,8 +23,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/qwdg.json b/src/lib/runners/qwdg.json index a435b0238..dc024f475 100644 --- a/src/lib/runners/qwdg.json +++ b/src/lib/runners/qwdg.json @@ -97,8 +97,6 @@ "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 2919933bb..87f3f12c3 100644 --- a/src/lib/runners/qxob.json +++ b/src/lib/runners/qxob.json @@ -191,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 773f16608..ee3324ecd 100644 --- a/src/lib/runners/qycx.json +++ b/src/lib/runners/qycx.json @@ -49,8 +49,6 @@ "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 65480dfac..e25738620 100644 --- a/src/lib/runners/rakk.json +++ b/src/lib/runners/rakk.json @@ -76,8 +76,6 @@ "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 4ff746aa5..9a8bfc705 100644 --- a/src/lib/runners/rbup.json +++ b/src/lib/runners/rbup.json @@ -76,8 +76,6 @@ "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 d72c10a47..151c27450 100644 --- a/src/lib/runners/rdae.json +++ b/src/lib/runners/rdae.json @@ -242,8 +242,6 @@ "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 ad9f9e32e..b0d2a5ace 100644 --- a/src/lib/runners/rgta.json +++ b/src/lib/runners/rgta.json @@ -45,8 +45,6 @@ "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 d3c0ddaff..9d0faa7db 100644 --- a/src/lib/runners/rhcv.json +++ b/src/lib/runners/rhcv.json @@ -98,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/rhoa.json b/src/lib/runners/rhoa.json index 91a6afe8f..acfc4d0d9 100644 --- a/src/lib/runners/rhoa.json +++ b/src/lib/runners/rhoa.json @@ -57,8 +57,6 @@ "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 70772224f..1d94b4939 100644 --- a/src/lib/runners/rico.json +++ b/src/lib/runners/rico.json @@ -97,8 +97,6 @@ "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 f8956d2a1..57f8fd209 100644 --- a/src/lib/runners/rivc.json +++ b/src/lib/runners/rivc.json @@ -110,8 +110,6 @@ "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 6595f7953..c21f48ab4 100644 --- a/src/lib/runners/rjfy.json +++ b/src/lib/runners/rjfy.json @@ -61,8 +61,6 @@ "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 550e489c3..97074326c 100644 --- a/src/lib/runners/rjho.json +++ b/src/lib/runners/rjho.json @@ -178,8 +178,6 @@ "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 7640acd5f..8a7239519 100644 --- a/src/lib/runners/rjzw.json +++ b/src/lib/runners/rjzw.json @@ -3238,8 +3238,6 @@ "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 d4bf5184d..ef2a5b991 100644 --- a/src/lib/runners/rlrs.json +++ b/src/lib/runners/rlrs.json @@ -114,8 +114,6 @@ "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 0bc7eb63f..cadc96952 100644 --- a/src/lib/runners/rnug.json +++ b/src/lib/runners/rnug.json @@ -23,8 +23,6 @@ "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 29c2037ca..a1a3f5535 100644 --- a/src/lib/runners/roko.json +++ b/src/lib/runners/roko.json @@ -81,8 +81,6 @@ "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 539ae09b0..24a9e1b0d 100644 --- a/src/lib/runners/rqjo.json +++ b/src/lib/runners/rqjo.json @@ -118,8 +118,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": true, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rtza.json b/src/lib/runners/rtza.json index fb6194bf6..e9b0cc6de 100644 --- a/src/lib/runners/rtza.json +++ b/src/lib/runners/rtza.json @@ -22,8 +22,6 @@ "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 7728c0614..acfc4d0d9 100644 --- a/src/lib/runners/ruou.json +++ b/src/lib/runners/ruou.json @@ -57,8 +57,6 @@ "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 7203c6501..92b43e5dc 100644 --- a/src/lib/runners/rviy.json +++ b/src/lib/runners/rviy.json @@ -45,8 +45,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rwuw.json b/src/lib/runners/rwuw.json index edf2ebbcb..174e7f620 100644 --- a/src/lib/runners/rwuw.json +++ b/src/lib/runners/rwuw.json @@ -375,8 +375,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/rypq.json b/src/lib/runners/rypq.json index a9fa63ed8..c94094576 100644 --- a/src/lib/runners/rypq.json +++ b/src/lib/runners/rypq.json @@ -98,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 9e0cf7edc..1b3f6823b 100644 --- a/src/lib/runners/ryqp.json +++ b/src/lib/runners/ryqp.json @@ -24,8 +24,6 @@ "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 0f7de1b1f..79719975e 100644 --- a/src/lib/runners/sdta.json +++ b/src/lib/runners/sdta.json @@ -190,8 +190,6 @@ "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 d342e8741..530ce02c9 100644 --- a/src/lib/runners/seie.json +++ b/src/lib/runners/seie.json @@ -23,8 +23,6 @@ "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 052f95b93..94f663f21 100644 --- a/src/lib/runners/sgfj.json +++ b/src/lib/runners/sgfj.json @@ -118,8 +118,6 @@ "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 ba6589486..ff336a45d 100644 --- a/src/lib/runners/sgnp.json +++ b/src/lib/runners/sgnp.json @@ -61,8 +61,6 @@ "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 4aa73c900..a5245e536 100644 --- a/src/lib/runners/skoo.json +++ b/src/lib/runners/skoo.json @@ -242,8 +242,6 @@ "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 b43fdd274..f9c70e49a 100644 --- a/src/lib/runners/smdm.json +++ b/src/lib/runners/smdm.json @@ -211,8 +211,6 @@ "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 c6dc319b2..e876227e0 100644 --- a/src/lib/runners/snlf.json +++ b/src/lib/runners/snlf.json @@ -19755,8 +19755,6 @@ "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 a6d7d0652..80c160763 100644 --- a/src/lib/runners/spga.json +++ b/src/lib/runners/spga.json @@ -97,8 +97,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/spki.json b/src/lib/runners/spki.json index 23941ee25..7be15c2fd 100644 --- a/src/lib/runners/spki.json +++ b/src/lib/runners/spki.json @@ -122,8 +122,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "sm", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/sskt.json b/src/lib/runners/sskt.json index 24f30da04..da80778e5 100644 --- a/src/lib/runners/sskt.json +++ b/src/lib/runners/sskt.json @@ -156,8 +156,6 @@ "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 b790f1a72..9a8d6c6ce 100644 --- a/src/lib/runners/sucz.json +++ b/src/lib/runners/sucz.json @@ -49,8 +49,6 @@ "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 918cef5c0..7e2d576be 100644 --- a/src/lib/runners/svbd.json +++ b/src/lib/runners/svbd.json @@ -4773,8 +4773,6 @@ "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 d8e8c7fc6..14eac7f50 100644 --- a/src/lib/runners/sxnt.json +++ b/src/lib/runners/sxnt.json @@ -93,8 +93,6 @@ "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 5238f68c5..ac22f8909 100644 --- a/src/lib/runners/tfsi.json +++ b/src/lib/runners/tfsi.json @@ -575,8 +575,6 @@ "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 07b8d1e10..098cdfd6f 100644 --- a/src/lib/runners/thbw.json +++ b/src/lib/runners/thbw.json @@ -39,8 +39,6 @@ "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 cd668416d..c1eaa9a06 100644 --- a/src/lib/runners/thkn.json +++ b/src/lib/runners/thkn.json @@ -868,8 +868,6 @@ "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 4fbd58ad7..dcf00dc61 100644 --- a/src/lib/runners/tjaf.json +++ b/src/lib/runners/tjaf.json @@ -157,8 +157,6 @@ "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 d973b7d47..0e581937b 100644 --- a/src/lib/runners/toem.json +++ b/src/lib/runners/toem.json @@ -257,8 +257,6 @@ "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 f88968497..1e3d2fd2a 100644 --- a/src/lib/runners/tpyg.json +++ b/src/lib/runners/tpyg.json @@ -385,8 +385,6 @@ "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 809d9ccae..a35426410 100644 --- a/src/lib/runners/udxn.json +++ b/src/lib/runners/udxn.json @@ -135,8 +135,6 @@ "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 c21bbe2fb..bd062f147 100644 --- a/src/lib/runners/uexo.json +++ b/src/lib/runners/uexo.json @@ -977,8 +977,6 @@ "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 62f0ff37f..a3e876665 100644 --- a/src/lib/runners/ugvz.json +++ b/src/lib/runners/ugvz.json @@ -9367,8 +9367,6 @@ "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 3d69ebd93..285f76342 100644 --- a/src/lib/runners/uhqo.json +++ b/src/lib/runners/uhqo.json @@ -24,8 +24,6 @@ "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 349a2f604..f1ef59f52 100644 --- a/src/lib/runners/uiwl.json +++ b/src/lib/runners/uiwl.json @@ -342,8 +342,6 @@ "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 5830a38c4..3db190263 100644 --- a/src/lib/runners/unxf.json +++ b/src/lib/runners/unxf.json @@ -247,8 +247,6 @@ "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 d9daa0147..8b6167b88 100644 --- a/src/lib/runners/uppk.json +++ b/src/lib/runners/uppk.json @@ -99,8 +99,6 @@ "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 68458f918..86002b7f7 100644 --- a/src/lib/runners/uvmv.json +++ b/src/lib/runners/uvmv.json @@ -76,8 +76,6 @@ "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 057e6ad18..32f100ed5 100644 --- a/src/lib/runners/uwma.json +++ b/src/lib/runners/uwma.json @@ -154,8 +154,6 @@ "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 f8bf7a4f5..5aa58c40d 100644 --- a/src/lib/runners/uwyn.json +++ b/src/lib/runners/uwyn.json @@ -17117,8 +17117,6 @@ "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 d5cc057cc..7fea1db06 100644 --- a/src/lib/runners/vcqp.json +++ b/src/lib/runners/vcqp.json @@ -135,8 +135,6 @@ "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 4702beb37..12520d43f 100644 --- a/src/lib/runners/vdhd.json +++ b/src/lib/runners/vdhd.json @@ -677,8 +677,6 @@ "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 eff11bba6..78c28ddc5 100644 --- a/src/lib/runners/veft.json +++ b/src/lib/runners/veft.json @@ -61,8 +61,6 @@ "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 a089050c3..7794d4564 100644 --- a/src/lib/runners/vfdw.json +++ b/src/lib/runners/vfdw.json @@ -250,8 +250,6 @@ "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 989333f82..98df4a422 100644 --- a/src/lib/runners/vhte.json +++ b/src/lib/runners/vhte.json @@ -97,8 +97,6 @@ "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 4638d50bd..d5992001e 100644 --- a/src/lib/runners/vilr.json +++ b/src/lib/runners/vilr.json @@ -99,8 +99,6 @@ "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 75e0bd72d..79719975e 100644 --- a/src/lib/runners/vlhb.json +++ b/src/lib/runners/vlhb.json @@ -190,8 +190,6 @@ "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 b54da0647..d9eae3a1f 100644 --- a/src/lib/runners/vlob.json +++ b/src/lib/runners/vlob.json @@ -136,8 +136,6 @@ "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 c0278cc9a..f8ee0089d 100644 --- a/src/lib/runners/vmkg.json +++ b/src/lib/runners/vmkg.json @@ -60,8 +60,6 @@ "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 864a015f4..efc59c116 100644 --- a/src/lib/runners/voeb.json +++ b/src/lib/runners/voeb.json @@ -49,8 +49,6 @@ "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 5bf0b0079..5db893dbb 100644 --- a/src/lib/runners/vowa.json +++ b/src/lib/runners/vowa.json @@ -60,8 +60,6 @@ "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 58ca5bafd..df06b808e 100644 --- a/src/lib/runners/vozu.json +++ b/src/lib/runners/vozu.json @@ -61,8 +61,6 @@ "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 8be7e1f13..4c1b6aa77 100644 --- a/src/lib/runners/vqwp.json +++ b/src/lib/runners/vqwp.json @@ -97,8 +97,6 @@ "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 d6ae10dcf..4b1ecae60 100644 --- a/src/lib/runners/vqyl.json +++ b/src/lib/runners/vqyl.json @@ -195,8 +195,6 @@ "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 f07231c1c..675a3512a 100644 --- a/src/lib/runners/vsvt.json +++ b/src/lib/runners/vsvt.json @@ -23,8 +23,6 @@ "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 abec492e5..7520333f6 100644 --- a/src/lib/runners/vvjn.json +++ b/src/lib/runners/vvjn.json @@ -23,8 +23,6 @@ "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 549c766af..7f07dbd7c 100644 --- a/src/lib/runners/vwvb.json +++ b/src/lib/runners/vwvb.json @@ -22,8 +22,6 @@ "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 157f82d4e..f91b0897d 100644 --- a/src/lib/runners/wcer.json +++ b/src/lib/runners/wcer.json @@ -98,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/wenx.json b/src/lib/runners/wenx.json index 9fdc31d8c..30918f929 100644 --- a/src/lib/runners/wenx.json +++ b/src/lib/runners/wenx.json @@ -210,8 +210,6 @@ "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 07b8d1e10..098cdfd6f 100644 --- a/src/lib/runners/weoz.json +++ b/src/lib/runners/weoz.json @@ -39,8 +39,6 @@ "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 33372980a..a8b7090d7 100644 --- a/src/lib/runners/wgby.json +++ b/src/lib/runners/wgby.json @@ -360,8 +360,6 @@ "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 8105dd3f2..0861548a6 100644 --- a/src/lib/runners/wjwu.json +++ b/src/lib/runners/wjwu.json @@ -90,8 +90,6 @@ "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 8ec99ba31..ff02c5816 100644 --- a/src/lib/runners/wopl.json +++ b/src/lib/runners/wopl.json @@ -97,8 +97,6 @@ "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 567552df9..64f88496f 100644 --- a/src/lib/runners/wqml.json +++ b/src/lib/runners/wqml.json @@ -99,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 ca86d1ddc..fcb7690cd 100644 --- a/src/lib/runners/wtup.json +++ b/src/lib/runners/wtup.json @@ -76,8 +76,6 @@ "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 0fd8ca599..bd88e2a58 100644 --- a/src/lib/runners/wunw.json +++ b/src/lib/runners/wunw.json @@ -304,8 +304,6 @@ "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 1e21d27eb..699832b7c 100644 --- a/src/lib/runners/wwtl.json +++ b/src/lib/runners/wwtl.json @@ -192,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 8f005f6fb..531f00816 100644 --- a/src/lib/runners/wzqv.json +++ b/src/lib/runners/wzqv.json @@ -18106,8 +18106,6 @@ "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 index 2209b6094..b0c23f626 100644 --- a/src/lib/runners/xbki.json +++ b/src/lib/runners/xbki.json @@ -39719,8 +39719,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "xxxs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/xhdq.json b/src/lib/runners/xhdq.json index de38c7906..90737f74f 100644 --- a/src/lib/runners/xhdq.json +++ b/src/lib/runners/xhdq.json @@ -382,8 +382,6 @@ "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 dfa1a716a..30ffc6d4b 100644 --- a/src/lib/runners/xhul.json +++ b/src/lib/runners/xhul.json @@ -353,8 +353,6 @@ "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 dfd2e81fe..995ecaff2 100644 --- a/src/lib/runners/xjzx.json +++ b/src/lib/runners/xjzx.json @@ -178,8 +178,6 @@ "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 0ca3a1192..93e2cd7a3 100644 --- a/src/lib/runners/xkcm.json +++ b/src/lib/runners/xkcm.json @@ -160,8 +160,6 @@ "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 38bb47c89..994a63062 100644 --- a/src/lib/runners/xlgb.json +++ b/src/lib/runners/xlgb.json @@ -200,8 +200,6 @@ "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 58f3849ce..fb52d2955 100644 --- a/src/lib/runners/xmqp.json +++ b/src/lib/runners/xmqp.json @@ -65,8 +65,6 @@ "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 94dd871e7..0a95b546d 100644 --- a/src/lib/runners/xpks.json +++ b/src/lib/runners/xpks.json @@ -49,8 +49,6 @@ "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 425e0022e..e3310ce53 100644 --- a/src/lib/runners/xqjd.json +++ b/src/lib/runners/xqjd.json @@ -265,8 +265,6 @@ "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 c3d9317b0..490754dc7 100644 --- a/src/lib/runners/xusi.json +++ b/src/lib/runners/xusi.json @@ -331,8 +331,6 @@ "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 42ef9d44e..3b01752a3 100644 --- a/src/lib/runners/xwzc.json +++ b/src/lib/runners/xwzc.json @@ -98,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/xxan.json b/src/lib/runners/xxan.json index 74082686b..4add3f7f3 100644 --- a/src/lib/runners/xxan.json +++ b/src/lib/runners/xxan.json @@ -158,8 +158,6 @@ "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 9e783a466..4854f7771 100644 --- a/src/lib/runners/yabb.json +++ b/src/lib/runners/yabb.json @@ -98,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 a31abe8f7..2925e1148 100644 --- a/src/lib/runners/ybne.json +++ b/src/lib/runners/ybne.json @@ -210,8 +210,6 @@ "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 585d60121..db7251f05 100644 --- a/src/lib/runners/ycpk.json +++ b/src/lib/runners/ycpk.json @@ -191,8 +191,6 @@ "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 67f42b6ef..4d25cc2f3 100644 --- a/src/lib/runners/ycxr.json +++ b/src/lib/runners/ycxr.json @@ -77,8 +77,6 @@ "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 f6da20a53..f773d8b8b 100644 --- a/src/lib/runners/yfwd.json +++ b/src/lib/runners/yfwd.json @@ -99,8 +99,6 @@ "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 f12105be9..cb13d83c4 100644 --- a/src/lib/runners/yiri.json +++ b/src/lib/runners/yiri.json @@ -23,8 +23,6 @@ "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 8bdcb1a57..9154f8a3d 100644 --- a/src/lib/runners/yjur.json +++ b/src/lib/runners/yjur.json @@ -131,8 +131,6 @@ "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 8297ddae6..fa3c8f851 100644 --- a/src/lib/runners/ykqf.json +++ b/src/lib/runners/ykqf.json @@ -60,8 +60,6 @@ "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 3b0c89c72..e9d22925c 100644 --- a/src/lib/runners/ylav.json +++ b/src/lib/runners/ylav.json @@ -317,8 +317,6 @@ "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 8ae4d7eb7..ec7c446f0 100644 --- a/src/lib/runners/ynoy.json +++ b/src/lib/runners/ynoy.json @@ -20078,8 +20078,6 @@ "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 ea8009da9..3a7dc30ad 100644 --- a/src/lib/runners/ysxf.json +++ b/src/lib/runners/ysxf.json @@ -213,8 +213,6 @@ "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 c8859a61c..dfa27474e 100644 --- a/src/lib/runners/yxel.json +++ b/src/lib/runners/yxel.json @@ -23,8 +23,6 @@ "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 da0923a72..89ec84bdc 100644 --- a/src/lib/runners/yyfi.json +++ b/src/lib/runners/yyfi.json @@ -125,8 +125,6 @@ "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 7047f5aa3..d1f14d6bb 100644 --- a/src/lib/runners/zahd.json +++ b/src/lib/runners/zahd.json @@ -132,8 +132,6 @@ "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 5baaecb25..5815512ca 100644 --- a/src/lib/runners/zdpf.json +++ b/src/lib/runners/zdpf.json @@ -60,8 +60,6 @@ "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 c9718d238..901f3ae01 100644 --- a/src/lib/runners/zemy.json +++ b/src/lib/runners/zemy.json @@ -431,8 +431,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zkon.json b/src/lib/runners/zkon.json index d3504da53..f3bfc6652 100644 --- a/src/lib/runners/zkon.json +++ b/src/lib/runners/zkon.json @@ -353,8 +353,6 @@ "hideControls": true, "explanationsVisibility": "hidden", "hidePriorities": false, - "variableSize": "xs", - "containerSize": "xs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": false, diff --git a/src/lib/runners/zlrx.json b/src/lib/runners/zlrx.json index 04b3d881a..8bf0b36d6 100644 --- a/src/lib/runners/zlrx.json +++ b/src/lib/runners/zlrx.json @@ -408,8 +408,6 @@ "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 4f6b4629c..bfeeb512f 100644 --- a/src/lib/runners/zsxo.json +++ b/src/lib/runners/zsxo.json @@ -119,8 +119,6 @@ "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 1ec9f369a..95e011c47 100644 --- a/src/lib/runners/zuus.json +++ b/src/lib/runners/zuus.json @@ -312,8 +312,6 @@ "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 54e870f28..851c9f6d0 100644 --- a/src/lib/runners/zwpj.json +++ b/src/lib/runners/zwpj.json @@ -78,8 +78,6 @@ "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 867bcd434..55a10223b 100644 --- a/src/lib/runners/zwut.json +++ b/src/lib/runners/zwut.json @@ -5949,8 +5949,6 @@ "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 3846f45ba..12e26491e 100644 --- a/src/lib/runners/zwvj.json +++ b/src/lib/runners/zwvj.json @@ -338,8 +338,6 @@ "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 57d1d9ce0..9a2fc9dd4 100644 --- a/src/lib/runners/zxkq.json +++ b/src/lib/runners/zxkq.json @@ -139,8 +139,6 @@ "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 77c04073c..89a661bee 100644 --- a/src/lib/runners/zzhq.json +++ b/src/lib/runners/zzhq.json @@ -54,8 +54,6 @@ "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 af4944321..d0e6a8bb2 100644 --- a/src/lib/runners/zzxj.json +++ b/src/lib/runners/zzxj.json @@ -61,8 +61,6 @@ "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 c91ee06a1..ffa5967eb 100644 --- a/src/lib/runners/zzyu.json +++ b/src/lib/runners/zzyu.json @@ -78,8 +78,6 @@ "hideControls": false, "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": true, - "variableSize": "lg", - "containerSize": "xxs", "hidePlayButton": false, "hideBottomRightBadges": false, "skipToTheEnd": true, From ef6edcc418cb2897e7b8e6ce150cc0092059fecf Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 30 Sep 2019 13:19:09 -0700 Subject: [PATCH 25/36] Continue with 15 --- .../CustomEmoji/QuestionMinusOne.tsx | 35 ++++ src/components/CustomEmoji/index.tsx | 4 +- src/components/EmojiSeparator.tsx | 4 +- src/contents/15.jp.tsx | 183 ++++++++++++++++++ 4 files changed, 224 insertions(+), 2 deletions(-) create mode 100644 src/components/CustomEmoji/QuestionMinusOne.tsx 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 4bd1b5d6a..8fca9749e 100644 --- a/src/components/CustomEmoji/index.tsx +++ b/src/components/CustomEmoji/index.tsx @@ -28,6 +28,7 @@ import SingleArrowReverseSvg from 'src/components/CustomEmoji/SingleArrowReverse 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' @@ -61,7 +62,8 @@ export const customEmojiToComponent = { condition: ConditionSvg, oneTwenty: OneTwentySvg, multiply: MultiplySvg, - multiplyWhite: MultiplyWhiteSvg + 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/contents/15.jp.tsx b/src/contents/15.jp.tsx index 5584c8efd..8fc3e5a22 100644 --- a/src/contents/15.jp.tsx +++ b/src/contents/15.jp.tsx @@ -751,6 +751,189 @@ export default () => ( ) }, + { + title: <>階乗, + content: ( + <> + +

+ ちなみに弁当箱は四則演算だけじゃなく、さらに複雑な計算をすることもできるぞ。 +

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

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

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

+ たとえば、「階乗 + 」という計算がある。これは「 + + ある数からはじめて、1を引いていき、 + {' '} + になるまで繰り返し掛け算をする + + 」という計算だ。 +

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

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

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

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

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

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

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

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

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

+ 階段 + みたいに1ずつ数字が減っていくから「階」乗、と覚えておけばいい。 +

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

ふむふむ…

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

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

+

どうやったらできるか説明しよう!

+ + ) + } + ]} + /> + + ) + }, { title: <>Yコンビネータと組み合わせると, content: ( From 496232659720a85feb32dba80a78ca42557a63d4 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 30 Sep 2019 13:37:41 -0700 Subject: [PATCH 26/36] :pencil: --- scripts/lib/initialExpressionContainers.ts | 6 + scripts/lib/runnerConfigs.ts | 6 + src/components/BinaryExpressionBox.tsx | 12 +- src/components/MultiplyIcon.tsx | 6 +- src/components/Runners/Trwj.tsx | 12 ++ src/components/Runners/index.ts | 1 + src/contents/15.jp.tsx | 186 ++------------------- src/lib/runners/trwj.json | 57 +++++++ 8 files changed, 105 insertions(+), 181 deletions(-) create mode 100644 src/components/Runners/Trwj.tsx create mode 100644 src/lib/runners/trwj.json diff --git a/scripts/lib/initialExpressionContainers.ts b/scripts/lib/initialExpressionContainers.ts index 328453781..f95ecdbf1 100644 --- a/scripts/lib/initialExpressionContainers.ts +++ b/scripts/lib/initialExpressionContainers.ts @@ -2282,6 +2282,12 @@ export const xfso = initializeExpressionContainer([ } ]) +export const ygum = initializeExpressionContainer({ + binaryType: 'multiply', + first: 'blankNumberPurple', + second: 'blankNumberPink' +}) + export const krin = initializeExpressionContainer({ binaryType: 'multiply', first: { diff --git a/scripts/lib/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index c8e3eef92..5e0a99ef4 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -2569,6 +2569,12 @@ export const jtxf: ExpressionRunnerShorthandConfig = { showPriorities: true } +export const trwj: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.ygum, + showPriorities: true +} + export const aklf: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.nuoh, diff --git a/src/components/BinaryExpressionBox.tsx b/src/components/BinaryExpressionBox.tsx index 6fa89c20a..e80c31e2a 100644 --- a/src/components/BinaryExpressionBox.tsx +++ b/src/components/BinaryExpressionBox.tsx @@ -18,12 +18,12 @@ interface BinaryExpressionBoxProps { const multiplyIconSize = (size: VariableSizes) => ({ - lg: fontSizes(1.2), - md: fontSizes(1), - sm: fontSizes(0.85), - xs: fontSizes(0.8), - xxs: fontSizes(0.75), - xxxs: fontSizes(0.7) + 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) => { diff --git a/src/components/MultiplyIcon.tsx b/src/components/MultiplyIcon.tsx index e5407be77..1c1213e32 100644 --- a/src/components/MultiplyIcon.tsx +++ b/src/components/MultiplyIcon.tsx @@ -9,11 +9,11 @@ const MultiplyIcon = ({ revert }: { revert?: boolean }) => ( display: inline-flex; align-items: center; justify-content: center; - width: 1.8em; - height: 1.8em; + width: 1.6em; + height: 1.6em; border-radius: ${radii(0.25)}; color: ${colors(revert ? 'white' : 'indigo300')}; - font-size: 0.55em; + font-size: 0.7em; font-weight: bold; line-height: ${lineHeights(1.3, { ignoreLocale: true })}; border: 2px solid ${colors('indigo300')}; 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/index.ts b/src/components/Runners/index.ts index f8478247b..b987220c3 100644 --- a/src/components/Runners/index.ts +++ b/src/components/Runners/index.ts @@ -365,6 +365,7 @@ 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 Aklf } from 'src/components/Runners/Aklf' export { default as Gemh } from 'src/components/Runners/Gemh' export { default as Unxf } from 'src/components/Runners/Unxf' diff --git a/src/contents/15.jp.tsx b/src/contents/15.jp.tsx index 8fc3e5a22..edb23cba9 100644 --- a/src/contents/15.jp.tsx +++ b/src/contents/15.jp.tsx @@ -18,6 +18,7 @@ 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 MultiplyIcon from 'src/components/MultiplyIcon' import ExpressionRunnerCaptionOnly from 'src/components/ExpressionRunnerCaptionOnly' export default () => ( @@ -925,7 +926,7 @@ export default () => ( children: ( <>

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

-

どうやったらできるか説明しよう!

+

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

) } @@ -935,7 +936,7 @@ export default () => ( ) }, { - title: <>Yコンビネータと組み合わせると, + title: <>掛け算の省略表記, content: ( <> ( children: ( <>

- また、前回「 - - 」を再現するのに使った「 - Yコンビネータ - 」の弁当箱と組み合わせることで、さらに複雑な計算をすることもできる。 -

- - 前回「 - - 」を -
- 再現するのに使った「 - Yコンビネータ」 -
- - ) - }, - { - type: 'thinking', - children: ( - <> -

どういうこと?

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

- たとえば、「階乗 - 」という計算がある。これは「 + まず、 - ある数からはじめて、1を引いていき、 - {' '} - になるまで繰り返し掛け算をする + 掛け算を計算できる弁当箱を、以下のように省略表記してみる。 - 」という計算だ。 -

-

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

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

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

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

- 階段 - みたいに1ずつ数字が減っていくから「階」乗、と覚えておけばいい。 -

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

ふむふむ…

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

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

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

へー、そうなの!

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

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

) - } - ]} - /> - 掛け算を計算できる弁当箱を… - - - ✖️印で省略してみる - -

- ✖️ - 印を使うことで、見た目がシンプルになった! + そうだ。試しに、こちらを + してみるといい:

) 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 +} From b2b5cd8410c3a2b02016f87f9bfd6f371c37428a Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 30 Sep 2019 15:46:08 -0700 Subject: [PATCH 27/36] :pencil: --- scripts/lib/initialExpressionContainers.ts | 10 ++++ scripts/lib/runnerConfigs.ts | 6 +++ src/components/Runners/Potg.tsx | 12 +++++ src/components/Runners/index.ts | 1 + src/contents/15.jp.tsx | 7 ++- src/lib/runners/potg.json | 59 ++++++++++++++++++++++ 6 files changed, 93 insertions(+), 2 deletions(-) create mode 100644 src/components/Runners/Potg.tsx create mode 100644 src/lib/runners/potg.json diff --git a/scripts/lib/initialExpressionContainers.ts b/scripts/lib/initialExpressionContainers.ts index f95ecdbf1..043c10e18 100644 --- a/scripts/lib/initialExpressionContainers.ts +++ b/scripts/lib/initialExpressionContainers.ts @@ -2288,6 +2288,16 @@ export const ygum = initializeExpressionContainer({ second: 'blankNumberPink' }) +export const babw = initializeExpressionContainer({ + binaryType: 'multiply', + first: { + shorthandNumber: 2 + }, + second: { + shorthandNumber: 3 + } +}) + export const krin = initializeExpressionContainer({ binaryType: 'multiply', first: { diff --git a/scripts/lib/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index 5e0a99ef4..44727e80f 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -2575,6 +2575,12 @@ export const trwj: ExpressionRunnerShorthandConfig = { showPriorities: true } +export const potg: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.babw, + showPriorities: true +} + export const aklf: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.nuoh, 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/index.ts b/src/components/Runners/index.ts index b987220c3..b61f22c2a 100644 --- a/src/components/Runners/index.ts +++ b/src/components/Runners/index.ts @@ -366,6 +366,7 @@ 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 Gemh } from 'src/components/Runners/Gemh' export { default as Unxf } from 'src/components/Runners/Unxf' diff --git a/src/contents/15.jp.tsx b/src/contents/15.jp.tsx index edb23cba9..c1792cb3a 100644 --- a/src/contents/15.jp.tsx +++ b/src/contents/15.jp.tsx @@ -967,8 +967,11 @@ export default () => ( children: ( <>

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

) diff --git a/src/lib/runners/potg.json b/src/lib/runners/potg.json new file mode 100644 index 000000000..6f8286460 --- /dev/null +++ b/src/lib/runners/potg.json @@ -0,0 +1,59 @@ +{ + "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" + } + ], + "speed": 1, + "hideControls": true, + "explanationsVisibility": "hidden", + "hidePriorities": false, + "hidePlayButton": false, + "hideBottomRightBadges": false, + "skipToTheEnd": false, + "hideFuncUnboundBadgeOnExplanation": false, + "highlightOverridesCallArgAndFuncUnboundOnly": false, + "bottomRightBadgeOverrides": {}, + "highlightOverrides": {}, + "highlightOverrideActiveAfterStart": false, + "highlightFunctions": false +} From 36a5dcfca7b4f6909ebd3132dd59c2ee3e48bb61 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 30 Sep 2019 16:09:40 -0700 Subject: [PATCH 28/36] Continue with 15 --- scripts/lib/initialExpressionContainers.ts | 17 ++ scripts/lib/runnerConfigs.ts | 8 +- src/components/CustomEmoji/OneTwentySvg.tsx | 28 --- src/components/CustomEmoji/index.tsx | 2 - src/components/EmojiNumber.tsx | 2 - src/components/EmojiSeparator.tsx | 4 +- src/components/Runners/Zick.tsx | 12 ++ src/components/Runners/index.ts | 1 + src/contents/15.jp.tsx | 68 +++---- src/lib/runners/potg.json | 27 ++- src/lib/runners/zick.json | 190 ++++++++++++++++++++ 11 files changed, 272 insertions(+), 87 deletions(-) delete mode 100644 src/components/CustomEmoji/OneTwentySvg.tsx create mode 100644 src/components/Runners/Zick.tsx create mode 100644 src/lib/runners/zick.json diff --git a/scripts/lib/initialExpressionContainers.ts b/scripts/lib/initialExpressionContainers.ts index 043c10e18..94d3d003e 100644 --- a/scripts/lib/initialExpressionContainers.ts +++ b/scripts/lib/initialExpressionContainers.ts @@ -2314,6 +2314,23 @@ export const krin = initializeExpressionContainer({ } }) +export const hbzd = initializeExpressionContainer({ + 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' + } + } + } +}) + export const jvmi = initializeExpressionContainer([ yCombinator, { diff --git a/scripts/lib/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index 44727e80f..603fdd9cd 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -2576,7 +2576,7 @@ export const trwj: ExpressionRunnerShorthandConfig = { } export const potg: ExpressionRunnerShorthandConfig = { - runner: 'simple', + runner: 'playButtonOnly', initialExpressionContainer: initialExpressionContainers.babw, showPriorities: true } @@ -2608,6 +2608,12 @@ export const ddrg: ExpressionRunnerShorthandConfig = { showPriorities: true } +export const zick: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.hbzd, + showPriorities: true +} + export const spki: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.roso, diff --git a/src/components/CustomEmoji/OneTwentySvg.tsx b/src/components/CustomEmoji/OneTwentySvg.tsx deleted file mode 100644 index 39438aa62..000000000 --- a/src/components/CustomEmoji/OneTwentySvg.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import * as React from 'react' - -const OneTwentySvg = (props: React.SVGProps) => ( - - - - - - - - - - -) - -export default OneTwentySvg diff --git a/src/components/CustomEmoji/index.tsx b/src/components/CustomEmoji/index.tsx index 8fca9749e..c7927e180 100644 --- a/src/components/CustomEmoji/index.tsx +++ b/src/components/CustomEmoji/index.tsx @@ -11,7 +11,6 @@ import DoubleArrowSvg from 'src/components/CustomEmoji/DoubleArrowSvg' import HorizontalDotDotDotRedSvg from 'src/components/CustomEmoji/HorizontalDotDotDotRedSvg' import HorizontalDotDotDotSvg from 'src/components/CustomEmoji/HorizontalDotDotDotSvg' import IndexSvg from 'src/components/CustomEmoji/IndexSvg' -import OneTwentySvg from 'src/components/CustomEmoji/OneTwentySvg' import LambdaSvg from 'src/components/CustomEmoji/LambdaSvg' import LetterCSvg from 'src/components/CustomEmoji/LetterCSvg' import LetterDSvg from 'src/components/CustomEmoji/LetterDSvg' @@ -60,7 +59,6 @@ export const customEmojiToComponent = { lambda: LambdaSvg, index: IndexSvg, condition: ConditionSvg, - oneTwenty: OneTwentySvg, multiply: MultiplySvg, multiplyWhite: MultiplyWhiteSvg, questionMinusOne: QuestionMinusOne diff --git a/src/components/EmojiNumber.tsx b/src/components/EmojiNumber.tsx index cdf9ed30d..05cea9fc3 100644 --- a/src/components/EmojiNumber.tsx +++ b/src/components/EmojiNumber.tsx @@ -18,8 +18,6 @@ const EmojiNumber = ({ number, size }: EmojiNumberProps) => { return } else if (number === 24) { return - } else if (number === 120) { - return } else { return ( ({ - 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)], @@ -36,7 +35,6 @@ 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/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/index.ts b/src/components/Runners/index.ts index b61f22c2a..e00cc7afb 100644 --- a/src/components/Runners/index.ts +++ b/src/components/Runners/index.ts @@ -371,6 +371,7 @@ export { default as Aklf } from 'src/components/Runners/Aklf' 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 Zick } from 'src/components/Runners/Zick' export { default as Spki } from 'src/components/Runners/Spki' export { default as Lgiv } from 'src/components/Runners/Lgiv' export { default as Xbki } from 'src/components/Runners/Xbki' diff --git a/src/contents/15.jp.tsx b/src/contents/15.jp.tsx index c1792cb3a..c96e56057 100644 --- a/src/contents/15.jp.tsx +++ b/src/contents/15.jp.tsx @@ -877,35 +877,6 @@ export default () => ( } /> -

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

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

階段 みたいに1ずつ数字が減っていくから「階」乗、と覚えておけばいい。 @@ -982,7 +953,24 @@ export default () => ( <>

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

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

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

) @@ -1004,29 +992,15 @@ export default () => ( <>

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

- こちらの弁当箱は、黄色の部分に、 - - 先ほど紹介した掛け算の弁当箱( - ✖️ - 印)と、Yコンビネータの弁当箱が入っている - - 。 -

-

- この弁当箱を実行すると、 - - の階乗、すなわち{' '} - ✖️{' '} - ✖️{' '} - を計算してくれる - - んだ。 + まず、こちらの弁当箱を見てみよう。右側に掛け算のアイコン{' '} + が使われているのに注目だ。

) } ]} /> + 掛け算ができる弁当箱( ✖️印)と diff --git a/src/lib/runners/potg.json b/src/lib/runners/potg.json index 6f8286460..85c765447 100644 --- a/src/lib/runners/potg.json +++ b/src/lib/runners/potg.json @@ -41,16 +41,35 @@ "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": true, - "explanationsVisibility": "hidden", + "hideControls": false, + "explanationsVisibility": "hiddenInitialPausedOnly", "hidePriorities": false, "hidePlayButton": false, "hideBottomRightBadges": false, - "skipToTheEnd": false, - "hideFuncUnboundBadgeOnExplanation": false, + "skipToTheEnd": true, + "hideFuncUnboundBadgeOnExplanation": true, "highlightOverridesCallArgAndFuncUnboundOnly": false, "bottomRightBadgeOverrides": {}, "highlightOverrides": {}, diff --git a/src/lib/runners/zick.json b/src/lib/runners/zick.json new file mode 100644 index 000000000..bd2e6b348 --- /dev/null +++ b/src/lib/runners/zick.json @@ -0,0 +1,190 @@ +{ + "expressionContainers": [ + { + "expression": { + "arg": { + "name": "a", + "highlightType": "default", + "topLeftBadgeType": "none", + "bottomRightBadgeType": "none", + "type": "variable", + "argPriorityAgg": [], + "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 + }, + "numLeafNodes": 7, + "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 +} From e530b3c302dd2a5836d31915fe850e1cf7e2895a Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 30 Sep 2019 17:01:12 -0700 Subject: [PATCH 29/36] :pencil: --- scripts/lib/initialExpressionContainers.ts | 36 +- scripts/lib/runnerConfigs.ts | 6 + src/components/Runners/Olqy.tsx | 12 + src/components/Runners/index.ts | 1 + src/contents/15.jp.tsx | 37 ++- src/lib/runners/olqy.json | 368 +++++++++++++++++++++ src/lib/runners/zick.json | 190 +++++------ 7 files changed, 525 insertions(+), 125 deletions(-) create mode 100644 src/components/Runners/Olqy.tsx create mode 100644 src/lib/runners/olqy.json diff --git a/scripts/lib/initialExpressionContainers.ts b/scripts/lib/initialExpressionContainers.ts index 94d3d003e..0ab462abe 100644 --- a/scripts/lib/initialExpressionContainers.ts +++ b/scripts/lib/initialExpressionContainers.ts @@ -2315,21 +2315,35 @@ export const krin = initializeExpressionContainer({ }) export const hbzd = initializeExpressionContainer({ - arg: 'a', - body: { - arg: 'f', + checkType: 'isZero', + condition: [{ shorthandFunc: 'pred' }, 'f'], + trueCase: { shorthandNumber: 1 }, + falseCase: { + binaryType: 'multiply', + first: ['a', [{ shorthandFunc: 'pred' }, 'f']], + second: 'f' + } +}) + +export const bgid = initializeExpressionContainer([ + yCombinatorHighlighted, + { + arg: highlighted('a'), body: { - checkType: 'isZero', - condition: [{ shorthandFunc: 'pred' }, 'f'], - trueCase: { shorthandNumber: 1 }, - falseCase: { - binaryType: 'multiply', - first: ['a', [{ shorthandFunc: 'pred' }, 'f']], - second: 'f' + 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 jvmi = initializeExpressionContainer([ yCombinator, diff --git a/scripts/lib/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index 603fdd9cd..4334ae144 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -2587,6 +2587,12 @@ export const aklf: ExpressionRunnerShorthandConfig = { showPriorities: true } +export const olqy: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.bgid, + showPriorities: true +} + export const gemh: ExpressionRunnerShorthandConfig = { runner: 'simple', isDone: true, 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/index.ts b/src/components/Runners/index.ts index e00cc7afb..396163068 100644 --- a/src/components/Runners/index.ts +++ b/src/components/Runners/index.ts @@ -368,6 +368,7 @@ 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' diff --git a/src/contents/15.jp.tsx b/src/contents/15.jp.tsx index c96e56057..a56e20e36 100644 --- a/src/contents/15.jp.tsx +++ b/src/contents/15.jp.tsx @@ -12,6 +12,7 @@ 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' @@ -990,9 +991,11 @@ export default () => ( type: 'devil', children: ( <> -

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

+

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

- まず、こちらの弁当箱を見てみよう。右側に掛け算のアイコン{' '} + まず、こちらの弁当箱を見てみよう。上の{' '} + と{' '} + の間に掛け算のアイコン{' '} が使われているのに注目だ。

@@ -1000,7 +1003,35 @@ export default () => ( } ]} /> - + + {' '} + の間に +
+ 掛け算のアイコン が使われている +
+ +

+ 次に、上の弁当箱に、下の黄色の部分を追加してみよう。 +

+

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

+ + ) + } + ]} + /> + + 黄色の部分を追加。 +
+ 下半分はYコンビネータの弁当箱 +
掛け算ができる弁当箱( ✖️印)と 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/zick.json b/src/lib/runners/zick.json index bd2e6b348..94f9a658f 100644 --- a/src/lib/runners/zick.json +++ b/src/lib/runners/zick.json @@ -2,36 +2,64 @@ "expressionContainers": [ { "expression": { - "arg": { - "name": "a", - "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": [], + "argPriorityAgg": [ + 1 + ], "funcPriorityAgg": [], "emphasizePriority": false, - "bound": false, + "bound": true, "maxNestedFunctionDepth": 0 }, - "body": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { + "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", @@ -39,7 +67,10 @@ "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [ - 1 + 2, + 5, + 3, + 4 ], "funcPriorityAgg": [], "emphasizePriority": false, @@ -54,7 +85,7 @@ "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 1 + 4 ], "emphasizePriority": false, "bound": true, @@ -63,111 +94,48 @@ }, "state": "default", "type": "call", - "priority": 1, + "priority": 4, "maxNestedFunctionDepth": 0 }, - "trueCase": { - "name": "shorthandNumber", + "func": { + "name": "a", "highlightType": "default", "topLeftBadgeType": "none", "bottomRightBadgeType": "none", "type": "variable", "argPriorityAgg": [], "funcPriorityAgg": [ - 2 + 3 ], "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, + "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 }, - "type": "function", - "maxNestedFunctionDepth": 1 + "state": "default", + "priority": 5, + "maxNestedFunctionDepth": 0 }, - "type": "function", - "maxNestedFunctionDepth": 2 + "priority": 2, + "maxNestedFunctionDepth": 0 }, "numLeafNodes": 7, "containerState": "ready", From 95a20487a98c05519f89aa5ccb128c40d9e9dcd9 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 30 Sep 2019 18:23:20 -0700 Subject: [PATCH 30/36] :pencil: --- scripts/lib/initialExpressionContainers.ts | 48 + scripts/lib/runnerConfigs.ts | 49 +- src/components/EmojiSeparator.tsx | 4 +- .../ExpressionRunnerPrecomputed.tsx | 2 +- src/components/Runners/{Lgiv.tsx => Ancc.tsx} | 6 +- src/components/Runners/Eijx.tsx | 12 + src/components/Runners/Gzuj.tsx | 12 + src/components/Runners/Qurt.tsx | 12 + src/components/Runners/Rrmc.tsx | 12 + src/components/Runners/Txxw.tsx | 12 + src/components/Runners/Zlfx.tsx | 12 + src/components/Runners/index.ts | 8 +- src/contents/15.jp.tsx | 588 +- src/contents/demo.jp.tsx | 9 - src/lib/runners/ancc.json | 254 + src/lib/runners/eijx.json | 390 + src/lib/runners/gzuj.json | 36 + src/lib/runners/qurt.json | 83 + src/lib/runners/rrmc.json | 25123 ++++++++++++++++ src/lib/runners/txxw.json | 390 + src/lib/runners/zlfx.json | 390 + 21 files changed, 27341 insertions(+), 111 deletions(-) rename src/components/Runners/{Lgiv.tsx => Ancc.tsx} (63%) create mode 100644 src/components/Runners/Eijx.tsx create mode 100644 src/components/Runners/Gzuj.tsx create mode 100644 src/components/Runners/Qurt.tsx create mode 100644 src/components/Runners/Rrmc.tsx create mode 100644 src/components/Runners/Txxw.tsx create mode 100644 src/components/Runners/Zlfx.tsx create mode 100644 src/lib/runners/ancc.json create mode 100644 src/lib/runners/eijx.json create mode 100644 src/lib/runners/gzuj.json create mode 100644 src/lib/runners/qurt.json create mode 100644 src/lib/runners/rrmc.json create mode 100644 src/lib/runners/txxw.json create mode 100644 src/lib/runners/zlfx.json diff --git a/scripts/lib/initialExpressionContainers.ts b/scripts/lib/initialExpressionContainers.ts index 0ab462abe..fc694d164 100644 --- a/scripts/lib/initialExpressionContainers.ts +++ b/scripts/lib/initialExpressionContainers.ts @@ -2345,6 +2345,30 @@ export const bgid = initializeExpressionContainer([ } ]) +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, { @@ -2368,3 +2392,27 @@ export const jvmi = initializeExpressionContainer([ 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 + } +]) diff --git a/scripts/lib/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index 4334ae144..0a1150b43 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -2626,11 +2626,54 @@ export const spki: ExpressionRunnerShorthandConfig = { showPriorities: true } -export const lgiv: ExpressionRunnerShorthandConfig = { +export const zlfx: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.jypn, + showPriorities: true +} + +export const rrmc: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', skipToTheEnd: false, - skipActive: true, - initialExpressionContainer: initialExpressionContainers.krin, + initialExpressionContainer: initialExpressionContainers.jypn, + showPriorities: true, + speed: 4, + showDefaultAndActiveOnly: true, + lastAllowedExpressionState: 'default', + lastAllowedExpressionStateAfterIterations: 19 +} + +export const qurt: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.jypn, + showPriorities: true, + 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 } 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/ExpressionRunnerPrecomputed.tsx b/src/components/ExpressionRunnerPrecomputed.tsx index 958a7c960..d52c6539e 100644 --- a/src/components/ExpressionRunnerPrecomputed.tsx +++ b/src/components/ExpressionRunnerPrecomputed.tsx @@ -235,7 +235,7 @@ const ExpressionRunnerPrecomputed = ({ css={[ css` line-height: ${lineHeights(1.3, { ignoreLocale: true })}; - opacity: ${isFastForwarding ? 0.6 : 1}; + opacity: ${isFastForwarding ? 0.5 : 1}; position: relative; background-color: ${colors('white')}; ` diff --git a/src/components/Runners/Lgiv.tsx b/src/components/Runners/Ancc.tsx similarity index 63% rename from src/components/Runners/Lgiv.tsx rename to src/components/Runners/Ancc.tsx index f82236970..6764858be 100644 --- a/src/components/Runners/Lgiv.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/lgiv.json' +import config from 'src/lib/runners/ancc.json' -const Lgiv = ({ children }: { children?: React.ReactNode }) => ( +const Ancc = ({ children }: { children?: React.ReactNode }) => ( // @ts-ignore {children} ) -export default Lgiv +export default Ancc diff --git a/src/components/Runners/Eijx.tsx b/src/components/Runners/Eijx.tsx new file mode 100644 index 000000000..15ee640e3 --- /dev/null +++ b/src/components/Runners/Eijx.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/eijx.json' + +const Eijx = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Eijx diff --git a/src/components/Runners/Gzuj.tsx b/src/components/Runners/Gzuj.tsx new file mode 100644 index 000000000..38dd1a22e --- /dev/null +++ b/src/components/Runners/Gzuj.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/gzuj.json' + +const Gzuj = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Gzuj 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/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/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 396163068..be9da7892 100644 --- a/src/components/Runners/index.ts +++ b/src/components/Runners/index.ts @@ -374,5 +374,11 @@ export { default as Unxf } from 'src/components/Runners/Unxf' export { default as Ddrg } from 'src/components/Runners/Ddrg' export { default as Zick } from 'src/components/Runners/Zick' export { default as Spki } from 'src/components/Runners/Spki' -export { default as Lgiv } from 'src/components/Runners/Lgiv' +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 Xbki } from 'src/components/Runners/Xbki' diff --git a/src/contents/15.jp.tsx b/src/contents/15.jp.tsx index a56e20e36..94bb95826 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, @@ -20,7 +19,6 @@ import TwoColGrid from 'src/components/TwoColGrid' import * as R from 'src/components/Runners' import NextLessonButton from 'src/components/NextLessonButton' import MultiplyIcon from 'src/components/MultiplyIcon' -import ExpressionRunnerCaptionOnly from 'src/components/ExpressionRunnerCaptionOnly' export default () => ( (
下半分はYコンビネータの弁当箱 - - 掛け算ができる弁当箱( - ✖️印)と -
- Yコンビネータ - の弁当箱を使うことで… -
- - - の階乗、すなわち -
- ✖️{' '} - ✖️{' '} - を計算できる! -
-

へー、すごい!

+

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

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

えー、本当かなあ?

+ + ) + } + ]} + /> + + ) + }, + { + title: ( + <> + の階乗 + + ), + content: ( + <> +

- - 前のページで登場した弁当箱と、右上の部分が微妙に違う - - のが分かるかな? + では、先ほどの弁当箱を使って {' '} + の階乗を計算してみよう。 +

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

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

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

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

- この - - 右上部分の違いが、前回のように足し算を計算するか、今回のように階乗を計算するかの違いを生んでいる - - んだな。 + これを + してみよう!

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

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

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

なるほど…

+

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

) }, @@ -1131,69 +1160,249 @@ export default () => ( children: ( <>

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

- たとえば に変えると、 - の階乗を計算できる。 + というわけで、最後まで + してみよう!

) } ]} /> - - 上の数字を に変えると… - + + +

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

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

+ では最後に、先ほどの弁当箱を使って{' '} + の階乗を計算してみよう。 +

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

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

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

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

+

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

    - 「階乗」は、「 - - になるまで掛け算を『 - 繰り返す』 - - 」ということだから、 + ステップが非常に多いので、 + 3倍速で早送りするぞ。{' '} + - - 「繰り返す」のを可能にする「 - Yコンビネータ - 」の弁当箱が必要 - - というわけかな…? + 早送り中は、目に優しくなるように弁当箱を半透明にしている。 + + + 待てない場合は、「 + → + 」を押してもいいぞ。
) + } + ]} + /> + + +

+ になった! +

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

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

+ , + ✖️, + , + ✖️, + , + ✖️, + + ]} + description={ + <> + の階乗。 +
+ 実際に計算すると になる + + } + /> + + ) + } + ]} + /> + + ) + }, + { + title: <>Yコンビネータのおかげ, + content: ( + <> + +

+ このように、先ほどの弁当箱は一番上の部分に入れた数字の階乗を計算できるんだ。 +

+

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

+ + ) + } + ]} + /> + + + 一番上に を入れて +
+ すると… +
+ + , + ✖️, + , + ✖️, + , + ✖️, + , + ✖️, + + ]} + description={ + <> + の階乗を計算してくれる + + } + /> + +

なるほど、すごいなあ…

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

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

-

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

    @@ -1254,6 +1463,199 @@ export default () => ( ) }, + // { + // title: <>階乗の計算, + // content: ( + // <> + // + // 掛け算ができる弁当箱( + // ✖️印)と + //
    + // Yコンビネータ + // の弁当箱を使うことで… + //
    + // + // + // の階乗、すなわち + //
    + // ✖️{' '} + // ✖️{' '} + // を計算できる! + //
    + // + //

    へー、すごい!

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

    + // + // 前のページで登場した弁当箱と、右上の部分が微妙に違う + // + // のが分かるかな? + //

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

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

    + //

    + // この + // + // 右上部分の違いが、前回のように足し算を計算するか、今回のように階乗を計算するかの違いを生んでいる + // + // んだな。 + //

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

    なるほど…

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

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

    + //

    + // たとえば に変えると、 + // の階乗を計算できる。 + //

    + // + // ) + // } + // ]} + // /> + // + // 上の数字を に変えると… + // + // + // + // の階乗、すなわち + //
    + // ✖️{' '} + // ✖️{' '} + // ✖️{' '} + // を計算できる! + //
    + // + //

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

    + //
      + // + // 「階乗」は、「 + // + // になるまで掛け算を『 + // 繰り返す』 + // + // 」ということだから、 + // + // + // + // 「繰り返す」のを可能にする「 + // Yコンビネータ + // 」の弁当箱が必要 + // + // というわけかな…? + // + //
    + // + // ) + // }, + // { + // type: 'devil', + // children: ( + // <> + //

    + // その通りだ!上の弁当箱を完璧に理解するには、やはり早送りしてみないといけないが、今回は時間の都合上省略する。 + //

    + //

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

    + //
      + // + // + // Yコンビネータ + // の弁当箱は、 + // + // + // + // + // 掛け算を計算できる弁当箱と組み合わせることによって、 + // + // + // + // + // 階乗のように複雑な計算を行うこともできる + // + // + //
    + //

    ということだ。

    + // + // ) + // } + // ]} + // /> + // + // ) + // }, { title: <>弁当箱にできない計算はあるの?, content: ( diff --git a/src/contents/demo.jp.tsx b/src/contents/demo.jp.tsx index 7b7bf3c1b..28f143f7a 100644 --- a/src/contents/demo.jp.tsx +++ b/src/contents/demo.jp.tsx @@ -311,15 +311,6 @@ const DemoCardList = () => ( ) - }, - { - title: <>, - content: ( - <> - - - - ) } ]} /> 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/eijx.json b/src/lib/runners/eijx.json new file mode 100644 index 000000000..341b75fec --- /dev/null +++ b/src/lib/runners/eijx.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": 5, + "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/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/qurt.json b/src/lib/runners/qurt.json new file mode 100644 index 000000000..7e7c2a558 --- /dev/null +++ b/src/lib/runners/qurt.json @@ -0,0 +1,83 @@ +{ + "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 + } + ], + "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/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/txxw.json b/src/lib/runners/txxw.json new file mode 100644 index 000000000..696207a11 --- /dev/null +++ b/src/lib/runners/txxw.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": 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" + } + ], + "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/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 +} From dd8ec5dd7773d3cfdd5708897ec3056722de50ab Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 30 Sep 2019 18:24:16 -0700 Subject: [PATCH 31/36] Remove unused --- scripts/lib/runnerConfigs.ts | 6 - src/components/Runners/Spki.tsx | 12 -- src/components/Runners/index.ts | 1 - src/lib/runners/lgiv.json | 254 -------------------------------- src/lib/runners/spki.json | 134 ----------------- 5 files changed, 407 deletions(-) delete mode 100644 src/components/Runners/Spki.tsx delete mode 100644 src/lib/runners/lgiv.json delete mode 100644 src/lib/runners/spki.json diff --git a/scripts/lib/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index 0a1150b43..d62e6ee35 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -2620,12 +2620,6 @@ export const zick: ExpressionRunnerShorthandConfig = { showPriorities: true } -export const spki: ExpressionRunnerShorthandConfig = { - runner: 'simple', - initialExpressionContainer: initialExpressionContainers.roso, - showPriorities: true -} - export const zlfx: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.jypn, 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/index.ts b/src/components/Runners/index.ts index be9da7892..f283299b9 100644 --- a/src/components/Runners/index.ts +++ b/src/components/Runners/index.ts @@ -373,7 +373,6 @@ 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 Zick } from 'src/components/Runners/Zick' -export { default as Spki } from 'src/components/Runners/Spki' 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' diff --git a/src/lib/runners/lgiv.json b/src/lib/runners/lgiv.json deleted file mode 100644 index 1b83e2383..000000000 --- a/src/lib/runners/lgiv.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "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": 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 - }, - "numLeafNodes": 3, - "containerState": "ready", - "previouslyChangedExpressionState": "default" - }, - { - "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": 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 - }, - "numLeafNodes": 3, - "containerState": "stepped", - "previouslyChangedExpressionState": "active", - "activePriority": 1 - }, - { - "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 - }, - "numLeafNodes": 2, - "containerState": "ready", - "previouslyChangedExpressionState": "default", - "activePriority": 1 - }, - { - "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": 1, - "hideControls": false, - "explanationsVisibility": "hiddenInitialPausedOnly", - "hidePriorities": false, - "hidePlayButton": false, - "hideBottomRightBadges": false, - "skipToTheEnd": false, - "hideFuncUnboundBadgeOnExplanation": true, - "highlightOverridesCallArgAndFuncUnboundOnly": false, - "bottomRightBadgeOverrides": {}, - "highlightOverrides": {}, - "highlightOverrideActiveAfterStart": false, - "highlightFunctions": false, - "skipActive": true -} diff --git a/src/lib/runners/spki.json b/src/lib/runners/spki.json deleted file mode 100644 index 7be15c2fd..000000000 --- a/src/lib/runners/spki.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "expressionContainers": [ - { - "expression": { - "type": "conditional", - "state": "default", - "checkType": "isZero", - "condition": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "maxNestedFunctionDepth": 0 - }, - "trueCase": { - "name": "A", - "highlightType": "initialHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1 - ], - "emphasizePriority": false, - "bound": true, - "maxNestedFunctionDepth": 0 - }, - "falseCase": { - "arg": { - "arg": { - "arg": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 2, - 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 - }, - "func": { - "name": "shorthandFunc", - "highlightType": "initialHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2 - ], - "emphasizePriority": false, - "bound": true, - "shorthandFunc": "add", - "maxNestedFunctionDepth": 0 - }, - "state": "default", - "type": "call", - "priority": 2, - "maxNestedFunctionDepth": 0 - }, - "priority": 1, - "maxNestedFunctionDepth": 0 - }, - "numLeafNodes": 6, - "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 -} From 411b15e2a0da1641ccba20f8dc85c45dcd708855 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 30 Sep 2019 18:25:06 -0700 Subject: [PATCH 32/36] Remove ddrg --- scripts/lib/runnerConfigs.ts | 6 -- src/components/Runners/Ddrg.tsx | 12 --- src/components/Runners/index.ts | 1 - src/contents/15.jp.tsx | 29 ------ src/lib/runners/ddrg.json | 155 -------------------------------- 5 files changed, 203 deletions(-) delete mode 100644 src/components/Runners/Ddrg.tsx delete mode 100644 src/lib/runners/ddrg.json diff --git a/scripts/lib/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index d62e6ee35..09e277d11 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -2608,12 +2608,6 @@ export const unxf: ExpressionRunnerShorthandConfig = { showPriorities: true } -export const ddrg: ExpressionRunnerShorthandConfig = { - runner: 'simple', - initialExpressionContainer: initialExpressionContainers.uiwq, - showPriorities: true -} - export const zick: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.hbzd, diff --git a/src/components/Runners/Ddrg.tsx b/src/components/Runners/Ddrg.tsx deleted file mode 100644 index 9ab0b7bb8..000000000 --- a/src/components/Runners/Ddrg.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' -import config from 'src/lib/runners/ddrg.json' - -const Ddrg = ({ children }: { children?: React.ReactNode }) => ( - // @ts-ignore - - {children} - -) - -export default Ddrg diff --git a/src/components/Runners/index.ts b/src/components/Runners/index.ts index f283299b9..83701d802 100644 --- a/src/components/Runners/index.ts +++ b/src/components/Runners/index.ts @@ -371,7 +371,6 @@ 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 Zick } from 'src/components/Runners/Zick' export { default as Zlfx } from 'src/components/Runners/Zlfx' export { default as Rrmc } from 'src/components/Runners/Rrmc' diff --git a/src/contents/15.jp.tsx b/src/contents/15.jp.tsx index 94bb95826..5e8615263 100644 --- a/src/contents/15.jp.tsx +++ b/src/contents/15.jp.tsx @@ -1507,35 +1507,6 @@ export default () => ( // } // ]} // /> - // - // - // - // 前回の弁当箱 - //
    (🅰️ - // - // 🅱️ を計算) - //
    - // の右上部分: - //
    - //
    - // - // } - // right={ - // <> - // - // - // 今回の弁当箱 - //
    - // (階乗を計算) - //
    - // の右上部分: - //
    - //
    - // - // } - // /> // Date: Mon, 30 Sep 2019 18:28:21 -0700 Subject: [PATCH 33/36] :pencil: --- scripts/lib/initialExpressionContainers.ts | 67 ---- scripts/lib/runnerConfigs.ts | 18 - src/components/Runners/Jtxf.tsx | 12 - src/components/Runners/Qaoa.tsx | 12 - src/components/Runners/Rwuw.tsx | 12 - src/components/Runners/index.ts | 3 - src/contents/15.jp.tsx | 164 --------- src/lib/runners/jtxf.json | 79 ----- src/lib/runners/qaoa.json | 387 --------------------- src/lib/runners/rwuw.json | 387 --------------------- src/types/VariableNames.ts | 1 - 11 files changed, 1142 deletions(-) delete mode 100644 src/components/Runners/Jtxf.tsx delete mode 100644 src/components/Runners/Qaoa.tsx delete mode 100644 src/components/Runners/Rwuw.tsx delete mode 100644 src/lib/runners/jtxf.json delete mode 100644 src/lib/runners/qaoa.json delete mode 100644 src/lib/runners/rwuw.json diff --git a/scripts/lib/initialExpressionContainers.ts b/scripts/lib/initialExpressionContainers.ts index fc694d164..b028e5dc8 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,18 +2215,6 @@ export const roso = initializeExpressionContainer({ ] }) -export const xfso = initializeExpressionContainer([ - [ - { name: 'mult', highlighted: true }, - { - shorthandNumberAfterConvert: 'binarySecond' - } - ], - { - shorthandNumberAfterConvert: 'binaryFirst' - } -]) - export const ygum = initializeExpressionContainer({ binaryType: 'multiply', first: 'blankNumberPurple', diff --git a/scripts/lib/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index 09e277d11..2f1b4d80e 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -2545,30 +2545,12 @@ export const uhqo: ExpressionRunnerShorthandConfig = { initialExpressionContainer: initialExpressionContainers.tjcx } -export const rwuw: ExpressionRunnerShorthandConfig = { - runner: 'simple', - initialExpressionContainer: initialExpressionContainers.kjff, - showPriorities: true -} - -export const qaoa: ExpressionRunnerShorthandConfig = { - runner: 'simple', - initialExpressionContainer: initialExpressionContainers.zxdz, - showPriorities: true -} - export const kzkg: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.glvb, showPriorities: true } -export const jtxf: ExpressionRunnerShorthandConfig = { - runner: 'simple', - initialExpressionContainer: initialExpressionContainers.xfso, - showPriorities: true -} - export const trwj: ExpressionRunnerShorthandConfig = { runner: 'simple', initialExpressionContainer: initialExpressionContainers.ygum, diff --git a/src/components/Runners/Jtxf.tsx b/src/components/Runners/Jtxf.tsx deleted file mode 100644 index 956df9f2a..000000000 --- a/src/components/Runners/Jtxf.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' -import config from 'src/lib/runners/jtxf.json' - -const Jtxf = ({ children }: { children?: React.ReactNode }) => ( - // @ts-ignore - - {children} - -) - -export default Jtxf diff --git a/src/components/Runners/Qaoa.tsx b/src/components/Runners/Qaoa.tsx deleted file mode 100644 index 51c6b8a51..000000000 --- a/src/components/Runners/Qaoa.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' -import config from 'src/lib/runners/qaoa.json' - -const Qaoa = ({ children }: { children?: React.ReactNode }) => ( - // @ts-ignore - - {children} - -) - -export default Qaoa diff --git a/src/components/Runners/Rwuw.tsx b/src/components/Runners/Rwuw.tsx deleted file mode 100644 index 07c03a51d..000000000 --- a/src/components/Runners/Rwuw.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react' -import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' -import config from 'src/lib/runners/rwuw.json' - -const Rwuw = ({ children }: { children?: React.ReactNode }) => ( - // @ts-ignore - - {children} - -) - -export default Rwuw diff --git a/src/components/Runners/index.ts b/src/components/Runners/index.ts index 83701d802..be1fad671 100644 --- a/src/components/Runners/index.ts +++ b/src/components/Runners/index.ts @@ -361,10 +361,7 @@ 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' diff --git a/src/contents/15.jp.tsx b/src/contents/15.jp.tsx index 5e8615263..bf4291fc7 100644 --- a/src/contents/15.jp.tsx +++ b/src/contents/15.jp.tsx @@ -1463,170 +1463,6 @@ export default () => ( ) }, - // { - // title: <>階乗の計算, - // content: ( - // <> - // - // 掛け算ができる弁当箱( - // ✖️印)と - //
    - // Yコンビネータ - // の弁当箱を使うことで… - //
    - // - // - // の階乗、すなわち - //
    - // ✖️{' '} - // ✖️{' '} - // を計算できる! - //
    - // - //

    へー、すごい!

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

    - // - // 前のページで登場した弁当箱と、右上の部分が微妙に違う - // - // のが分かるかな? - //

    - // - // ) - // } - // ]} - // /> - // - //

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

    - //

    - // この - // - // 右上部分の違いが、前回のように足し算を計算するか、今回のように階乗を計算するかの違いを生んでいる - // - // んだな。 - //

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

    なるほど…

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

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

    - //

    - // たとえば に変えると、 - // の階乗を計算できる。 - //

    - // - // ) - // } - // ]} - // /> - // - // 上の数字を に変えると… - // - // - // - // の階乗、すなわち - //
    - // ✖️{' '} - // ✖️{' '} - // ✖️{' '} - // を計算できる! - //
    - // - //

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

    - //
      - // - // 「階乗」は、「 - // - // になるまで掛け算を『 - // 繰り返す』 - // - // 」ということだから、 - // - // - // - // 「繰り返す」のを可能にする「 - // Yコンビネータ - // 」の弁当箱が必要 - // - // というわけかな…? - // - //
    - // - // ) - // }, - // { - // type: 'devil', - // children: ( - // <> - //

    - // その通りだ!上の弁当箱を完璧に理解するには、やはり早送りしてみないといけないが、今回は時間の都合上省略する。 - //

    - //

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

    - //
      - // - // - // Yコンビネータ - // の弁当箱は、 - // - // - // - // - // 掛け算を計算できる弁当箱と組み合わせることによって、 - // - // - // - // - // 階乗のように複雑な計算を行うこともできる - // - // - //
    - //

    ということだ。

    - // - // ) - // } - // ]} - // /> - // - // ) - // }, { title: <>弁当箱にできない計算はあるの?, content: ( diff --git a/src/lib/runners/jtxf.json b/src/lib/runners/jtxf.json deleted file mode 100644 index 71c0c7641..000000000 --- a/src/lib/runners/jtxf.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "expressionContainers": [ - { - "expression": { - "arg": { - "name": "blankNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumberAfterConvert": "binaryFirst", - "maxNestedFunctionDepth": 0 - }, - "func": { - "arg": { - "name": "blankNumber", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "shorthandNumberAfterConvert": "binarySecond", - "maxNestedFunctionDepth": 0 - }, - "func": { - "name": "mult", - "highlightType": "initialHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 1, - 2 - ], - "emphasizePriority": false, - "bound": true, - "maxNestedFunctionDepth": 0 - }, - "state": "default", - "type": "call", - "priority": 1, - "maxNestedFunctionDepth": 0 - }, - "state": "default", - "type": "call", - "priority": 2, - "maxNestedFunctionDepth": 0 - }, - "numLeafNodes": 5, - "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/qaoa.json deleted file mode 100644 index 2343e4dcf..000000000 --- a/src/lib/runners/qaoa.json +++ /dev/null @@ -1,387 +0,0 @@ -{ - "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": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "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": { - "arg": { - "arg": { - "arg": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 3, - 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": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "maxNestedFunctionDepth": 0 - }, - "state": "default", - "type": "call", - "priority": 4, - "maxNestedFunctionDepth": 0 - }, - "func": { - "arg": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "maxNestedFunctionDepth": 0 - }, - "func": { - "name": "mult", - "highlightType": "initialHighlighted", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": true, - "maxNestedFunctionDepth": 0 - }, - "state": "default", - "type": "call", - "priority": 2, - "maxNestedFunctionDepth": 0 - }, - "state": "default", - "type": "call", - "priority": 3, - "maxNestedFunctionDepth": 0 - }, - "priority": 1, - "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, - 2 - ], - "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 - }, - "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/rwuw.json b/src/lib/runners/rwuw.json deleted file mode 100644 index 174e7f620..000000000 --- a/src/lib/runners/rwuw.json +++ /dev/null @@ -1,387 +0,0 @@ -{ - "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": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "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": { - "arg": { - "arg": { - "arg": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 1, - 3, - 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": { - "name": "a", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 4 - ], - "emphasizePriority": false, - "bound": true, - "maxNestedFunctionDepth": 0 - }, - "state": "default", - "type": "call", - "priority": 4, - "maxNestedFunctionDepth": 0 - }, - "func": { - "arg": { - "name": "f", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [ - 2 - ], - "funcPriorityAgg": [], - "emphasizePriority": false, - "bound": true, - "maxNestedFunctionDepth": 0 - }, - "func": { - "name": "mult", - "highlightType": "default", - "topLeftBadgeType": "none", - "bottomRightBadgeType": "none", - "type": "variable", - "argPriorityAgg": [], - "funcPriorityAgg": [ - 2, - 3 - ], - "emphasizePriority": false, - "bound": true, - "maxNestedFunctionDepth": 0 - }, - "state": "default", - "type": "call", - "priority": 2, - "maxNestedFunctionDepth": 0 - }, - "state": "default", - "type": "call", - "priority": 3, - "maxNestedFunctionDepth": 0 - }, - "priority": 1, - "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/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 From ad5766d9dc581ba6406dbae164b39000e2c5a213 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 30 Sep 2019 18:36:08 -0700 Subject: [PATCH 34/36] Last topic --- src/contents/15.jp.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/contents/15.jp.tsx b/src/contents/15.jp.tsx index bf4291fc7..1153605b3 100644 --- a/src/contents/15.jp.tsx +++ b/src/contents/15.jp.tsx @@ -738,15 +738,13 @@ export default () => ( }, { type: 'summary', - title: <>ここからは、雰囲気で読み進めてみてください, + title: <>次が最後の題材です!, content: ( <> -

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

    +

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

    完全に理解する必要はありません!} + description={<>もうすぐ終わります!} /> ) From 5c2fb98c4dcc61fd49b64669a29f0f0741b89e01 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 30 Sep 2019 19:20:41 -0700 Subject: [PATCH 35/36] Finish 15 --- scripts/lib/initialExpressionContainers.ts | 21 ++ scripts/lib/runnerConfigs.ts | 6 + src/components/Runners/Kmgw.tsx | 12 + src/components/Runners/index.ts | 1 + src/contents/15.jp.tsx | 103 ++++-- src/lib/runners/kmgw.json | 389 +++++++++++++++++++++ 6 files changed, 507 insertions(+), 25 deletions(-) create mode 100644 src/components/Runners/Kmgw.tsx create mode 100644 src/lib/runners/kmgw.json diff --git a/scripts/lib/initialExpressionContainers.ts b/scripts/lib/initialExpressionContainers.ts index b028e5dc8..bd964f4c2 100644 --- a/scripts/lib/initialExpressionContainers.ts +++ b/scripts/lib/initialExpressionContainers.ts @@ -2349,3 +2349,24 @@ export const bzpj = initializeExpressionContainer([ 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/runnerConfigs.ts b/scripts/lib/runnerConfigs.ts index 2f1b4d80e..c1c3da29b 100644 --- a/scripts/lib/runnerConfigs.ts +++ b/scripts/lib/runnerConfigs.ts @@ -2647,6 +2647,12 @@ export const eijx: ExpressionRunnerShorthandConfig = { showPriorities: true } +export const kmgw: ExpressionRunnerShorthandConfig = { + runner: 'simple', + initialExpressionContainer: initialExpressionContainers.abhd, + showPriorities: true +} + export const xbki: ExpressionRunnerShorthandConfig = { runner: 'playButtonOnly', skipToTheEnd: false, diff --git a/src/components/Runners/Kmgw.tsx b/src/components/Runners/Kmgw.tsx new file mode 100644 index 000000000..244819b56 --- /dev/null +++ b/src/components/Runners/Kmgw.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import ExpressionRunnerPrecomputed from 'src/components/ExpressionRunnerPrecomputed' +import config from 'src/lib/runners/kmgw.json' + +const Kmgw = ({ children }: { children?: React.ReactNode }) => ( + // @ts-ignore + + {children} + +) + +export default Kmgw diff --git a/src/components/Runners/index.ts b/src/components/Runners/index.ts index be1fad671..f7cf2c8f3 100644 --- a/src/components/Runners/index.ts +++ b/src/components/Runners/index.ts @@ -376,4 +376,5 @@ 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/contents/15.jp.tsx b/src/contents/15.jp.tsx index 1153605b3..148583704 100644 --- a/src/contents/15.jp.tsx +++ b/src/contents/15.jp.tsx @@ -800,6 +800,7 @@ export default () => ( ]} description={ <> + 階乗:
    ある数からはじめて、1を引いていき、
    {' '} @@ -941,6 +942,21 @@ export default () => ( ということか。

    + , + , + + ]} + description={ + <> + {' '} + ✖️{' '} + {' '} + を掛け算してくれる + + } + /> ) }, @@ -989,10 +1005,13 @@ export default () => ( <>

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

    - まず、こちらの弁当箱を見てみよう。上の{' '} - と{' '} - の間に掛け算のアイコン{' '} - が使われているのに注目だ。 + まず、こちらの弁当箱を見てみよう。 + + 上の と{' '} + の間に掛け算のアイコン{' '} + が使われている + + のに注目だ。

    ) @@ -1090,7 +1109,7 @@ export default () => ( />

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

    ) @@ -1245,7 +1264,7 @@ export default () => ( />

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

    ) @@ -1262,24 +1281,9 @@ export default () => ( children: ( <>

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

    -
      - - ステップが非常に多いので、 - 3倍速で早送りするぞ。{' '} - - - - 早送り中は、目に優しくなるように弁当箱を半透明にしている。 - - - 待てない場合は、「 - → - 」を押してもいいぞ。 - -
    ) } @@ -1327,6 +1331,14 @@ export default () => ( /> ) + }, + { + type: 'thinking', + children: ( + <> +

    確かに…!

    + + ) } ]} /> @@ -1382,6 +1394,47 @@ export default () => ( } /> + +

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

    + + ) + } + ]} + /> + + どんな大きな数字の階乗でも +
    + 計算することができる! +
    + + , + ✖️, + , + ✖️, + , + ✖️, + + ]} + description={ + <> + の階乗を計算してくれる + + } + /> ( , + , ✖️, - , + , ✖️, - , + , ✖️, ]} 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 +} From 80f607442b6beb0829a0aa1b4040fda88734d805 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 30 Sep 2019 19:28:42 -0700 Subject: [PATCH 36/36] Update demos --- src/contents/demo.en.tsx | 37 +++++++++++++++++++++++++++++++++++++ src/contents/demo.jp.tsx | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) 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: ( + <> + + ✖️{' '} + ✖️{' '} + ✖️{' '} + を計算 + + + ) } ]} />