@elyx-code/project-logic-tree 0.0.6791 → 0.0.6793
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 +183 -179
- package/dist/index.d.ts +6 -1
- package/dist/index.js +24195 -24030
- 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;
|
|
@@ -24817,6 +24821,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
24817
24821
|
static repository: IEditableEntityPersistanceRepository;
|
|
24818
24822
|
static type: EntityType.LiteralValue;
|
|
24819
24823
|
static USER_MANAGED_PARENT_TYPES: EntityType[];
|
|
24824
|
+
static USER_MANAGED_STANDALONE_PARENT_TYPES: EntityType[];
|
|
24820
24825
|
static PARENT_TYPES: EntityType[];
|
|
24821
24826
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
24822
24827
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
@@ -29958,7 +29963,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29958
29963
|
* Generates a pseudo-code representation of the call stack/logic flow
|
|
29959
29964
|
* starting from a specific entity (usually a FunctionDeclaration).
|
|
29960
29965
|
*/
|
|
29961
|
-
export declare function printLogicCallStack(startEntity: CallerEntityState,
|
|
29966
|
+
export declare function printLogicCallStack(startEntity: CallerEntityState, options?: ILogicPrintOptions): string;
|
|
29962
29967
|
|
|
29963
29968
|
export declare type ProjectDomain = string;
|
|
29964
29969
|
|