We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f510f1e commit f07fac7Copy full SHA for f07fac7
test/next/passes/translate/form_test.exs
@@ -76,7 +76,7 @@ defmodule ElixirScript.Translate.Forms.Test do
76
state = %{}
77
78
{js_ast, _} = Form.compile(ast, state)
79
- assert js_ast == J.call_expression(
+ assert js_ast == J.new_expression(
80
J.member_expression(
81
82
J.identifier("Bootstrap"),
test/support/main.ex
@@ -1,6 +1,5 @@
1
defmodule Main do
2
def start(:normal, [callback]) do
3
callback.("started")
4
- Enum.each(%{a: 1}, fn(x) -> JS.console.log(x) end)
5
end
6
0 commit comments