From be539e25248dfd0e7daadde811a9d339d37e862c Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 31 Jul 2024 05:38:31 +0530 Subject: [PATCH] fix(core): format --- mx-interpreter/preprocessor.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mx-interpreter/preprocessor.ts b/mx-interpreter/preprocessor.ts index e7227a9f..9ad15c2a 100644 --- a/mx-interpreter/preprocessor.ts +++ b/mx-interpreter/preprocessor.ts @@ -46,7 +46,7 @@ export default class Preprocessor { return error; } - /** +/** * Extracts parameter names from the workflow. * @param {WorkflowFile} workflow The given workflow * @returns {String[]} List of parameters' names. @@ -69,7 +69,7 @@ export default class Preprocessor { return getParamsRecurse(workflow.workflow); } - /** +/** * List all the selectors used in the given workflow (only literal "selector" * field in WHERE clauses so far) */ @@ -107,7 +107,7 @@ export default class Preprocessor { ], []); } - /** +/** * Recursively crawl `object` and initializes params - replaces the `{$param : paramName}` objects * with the defined value. * @returns {Workflow} Copy of the given workflow, modified (the initial workflow is left untouched).