Skip to content

Commit

Permalink
fix: remove semi colons in code
Browse files Browse the repository at this point in the history
  • Loading branch information
kollhof committed Nov 28, 2020
1 parent 5528ae7 commit 600c1a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/js/module.fnk
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module_transforms = dict:
no_result

ExportDefaultDeclaration: fn path:
id = path.node.declaration;
id = path.node.declaration
foo = expressionStatement
assignmentExpression
'='
Expand All @@ -61,7 +61,7 @@ module_transforms = dict:
no_result

ExportNamedDeclaration: fn path:
{declarations: [{id}]} = path.node.declaration;
{declarations: [{id}]} = path.node.declaration
foo = expressionStatement
assignmentExpression
'='
Expand Down
2 changes: 1 addition & 1 deletion src/lang/arithmitic/init.test.fnk
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe 'binary', fn:
- 1111

group1 = (1 + 2) * 3
group2 = (34234^-34234) + 1
group2 = (34234 ^ -34234) + 1
'
to_match_snapshot

0 comments on commit 600c1a5

Please sign in to comment.