Skip to content

Commit

Permalink
fix(examples,e2e): import do not support ','
Browse files Browse the repository at this point in the history
  • Loading branch information
emil14 committed May 3, 2024
1 parent 83aa86a commit 45347e4
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 deletions.
5 changes: 4 additions & 1 deletion e2e/add_nums_from_stdin_naive/main/main.neva
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { io, strconv }
import {
io
strconv
}

component Main(start any) (stop any) {
nodes {
Expand Down
5 changes: 4 additions & 1 deletion e2e/add_nums_from_stdin_with_default_any/main.neva
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { io, strconv }
import {
io
strconv
}

component {
Main(start) (stop) {
Expand Down
5 changes: 4 additions & 1 deletion e2e/add_nums_from_stdin_with_err_handling/main/main.neva
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { io, strconv }
import {
io
strconv
}

component Main(start any) (stop any) {
nodes {
Expand Down
5 changes: 4 additions & 1 deletion e2e/add_nums_from_stdin_with_multuple_senders/main/main.neva
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { io, strconv }
import {
io
strconv
}

component {
Main(start) (stop) {
Expand Down
5 changes: 4 additions & 1 deletion e2e/add_nums_from_stdin_with_sub_components/main/main.neva
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { io, strconv }
import {
io
strconv
}

component {
Main(start any) (stop any) {
Expand Down
5 changes: 4 additions & 1 deletion examples/add_numbers_from_stdin/main.neva
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { io, strconv }
import {
io
strconv
}

component {
Main(start) (stop) {
Expand Down

0 comments on commit 45347e4

Please sign in to comment.