We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is the method chaining macro from LispyScript 1 as described here: http://lispyscript.com/docs/#statements
It should still work but appears to be broken right now.
A quick test is to use the node server example from the link above:
(-> (require "http") (.createServer (function (request response) (response.writeHead 200 {'Content-Type': 'text/plain'}) (response.end "Hello World\n"))) (.listen 3000 "localhost"))
But currently this transpiles to this(!)
(3000. listen(((function(request, response) { response.writeHead(200, { 'Content-Type': 'text/plain' }); return response.end("Hello World\n"); }.createServer)(require("http")))))
This is also breaking the promise macro in sugarlisp-async btw.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is the method chaining macro from LispyScript 1 as described here:
http://lispyscript.com/docs/#statements
It should still work but appears to be broken right now.
A quick test is to use the node server example from the link above:
But currently this transpiles to this(!)
This is also breaking the promise macro in sugarlisp-async btw.
The text was updated successfully, but these errors were encountered: