-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Evaluation error #29
Comments
@felipebueno Working fine for me. I'll try to reproduce it. |
Oh, nevermind. I've found the problem. What happens is that I had defined this function before but forgot the |
But I think it'd be useful to be able to redefine functions without restarting the repl, wouldn't it? |
@felipebueno There is a open bug in node vm(nodejs/node#548). For time being, use like this: let fun = function fun() {};
let fun2 = () => {}; |
@princejwesley Thanks! 😄 👍 |
@felipebueno I'll keep this issue open until the |
Hi!
First, thanks for this great project. I'm learning Javascript (ES6) and React and it's the nicest repl I've found.
I think there's a problem with the evaluation:
I tested it on Firefox's console and it works fine.
The text was updated successfully, but these errors were encountered: