@elyx-code/project-logic-tree 0.0.6791 → 0.0.6792
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +150 -146
- package/dist/index.d.ts +5 -1
- package/dist/index.js +22811 -22642
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -15064,6 +15064,10 @@ export declare type GeneratedPayload = ElementGenerationTarget | {
|
|
|
15064
15064
|
[key: string]: any;
|
|
15065
15065
|
} | UnkownEntity;
|
|
15066
15066
|
|
|
15067
|
+
export declare function generateFullProjectPrintout(project: ProjectState, options?: IPrintEntityOptions, printoutOptions?: IEntityPrintoutOptions & {
|
|
15068
|
+
newLinesBetweenItems?: number;
|
|
15069
|
+
}): string;
|
|
15070
|
+
|
|
15067
15071
|
export declare const generateHexadecimalTokenOperation: IActionDescriptorTransfer;
|
|
15068
15072
|
|
|
15069
15073
|
export declare const generateHexadecimalTokenOperationError: IValueDescriptorTransfer;
|
|
@@ -29958,7 +29962,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29958
29962
|
* Generates a pseudo-code representation of the call stack/logic flow
|
|
29959
29963
|
* starting from a specific entity (usually a FunctionDeclaration).
|
|
29960
29964
|
*/
|
|
29961
|
-
export declare function printLogicCallStack(startEntity: CallerEntityState,
|
|
29965
|
+
export declare function printLogicCallStack(startEntity: CallerEntityState, options?: ILogicPrintOptions): string;
|
|
29962
29966
|
|
|
29963
29967
|
export declare type ProjectDomain = string;
|
|
29964
29968
|
|