Skip to content

Commit

Permalink
0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bahrus committed Dec 10, 2023
1 parent 320678e commit 68d1b8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion prsFrom.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function prsFrom(self) {
fromStatements = [];
for (const fromStatementString of from) {
const computeStatement = tryParse(fromStatementString, reValueStatement);
console.log({ computeStatement, fromStatementString });
//console.log({computeStatement, fromStatementString});
if (computeStatement === null)
throw 'PE'; //Parse Error
const { dependencies } = computeStatement;
Expand Down
2 changes: 1 addition & 1 deletion prsFrom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function prsFrom(self: AP) : PAP {
if(fromStatements === undefined) fromStatements = [];
for(const fromStatementString of from!){
const computeStatement = tryParse(fromStatementString, reValueStatement) as ComputeStatement;
console.log({computeStatement, fromStatementString});
//console.log({computeStatement, fromStatementString});
if(computeStatement === null) throw 'PE'; //Parse Error
const {dependencies} = computeStatement;
const splitDependencies = dependencies!.split(',').map(x => x.trim());
Expand Down

0 comments on commit 68d1b8a

Please sign in to comment.