Skip to content

Instantly share code, notes, and snippets.

@dbackeus
Last active August 29, 2015 14:06
Show Gist options
  • Save dbackeus/a00e4292810393438611 to your computer and use it in GitHub Desktop.
Save dbackeus/a00e4292810393438611 to your computer and use it in GitHub Desktop.
# Works:
Router.map(lambda {
`this.route("posts", {path: "/"})`
})
# Compiler error unexpected '"tLPAREN2"'
Router.map(lambda {
@route("posts", path: "/")
})
# Unknown method route
Router.map(lambda {
self.route("posts", path: "/")
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment