KCL: Remove unnecessary 'optional: bool' field on CallExpression (#4584)

It was put there in the original KCL JS-to-Rust rewrite, and I don't think it's used at all.
This commit is contained in:
Adam Chalmers
2024-11-27 18:01:42 -06:00
committed by GitHub
parent 46be4e7eef
commit dd052b35fd
97 changed files with 34 additions and 2234 deletions

View File

@ -727,7 +727,6 @@ export function createCallExpressionStdLib(
name,
},
optional: false,
arguments: args,
}
}
@ -749,7 +748,6 @@ export function createCallExpression(
name,
},
optional: false,
arguments: args,
}
}