@elyx-code/project-logic-tree 0.0.6406 → 0.0.6408

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.d.ts CHANGED
@@ -4364,6 +4364,8 @@ export declare class FunctionDeclarationState extends VersionedState implements
4364
4364
  addReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
4365
4365
  removeReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
4366
4366
  getUniqueReturnDeclarations(): ReturnDeclarationState[];
4367
+ removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
4368
+ syncInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
4367
4369
  }
4368
4370
 
4369
4371
  export declare type FunctionDeclarationTypesUnion = IFunctionDeclaration | IFunctionDeclarationTransfer | IFunctionDeclarationShallowTransfer | IFunctionDeclarationGenerationTarget;
@@ -16520,6 +16522,7 @@ export declare class VariableInstanceState extends VersionedState implements IVa
16520
16522
  errors: EntityGenerationError[];
16521
16523
  modifiedData: IVariableInstanceGenerationTarget;
16522
16524
  };
16525
+ get codeName(): string | null;
16523
16526
  get codeNativeValueValidation(): ValueValidationCallback | null;
16524
16527
  validateGeneratedUpdate(data: Partial<IVariableInstanceGenerationTarget>): {
16525
16528
  errors: EntityGenerationError[];