Giter Site home page Giter Site logo

Comments (5)

somebee avatar somebee commented on May 8, 2024

Imba has different precedence than Ruby when it comes to blocks. I've reasoned about it a few times, and have come to the conclusion that I like the Imba precedence better, but I cannot really remember why. Looks like we should go over it again, because right now it seems like a strange decision.

By the way, how it works in imba:

# It will only happen with callable arguments
save data do yes # block is called on data
save "data" do yes # block is called on save
save "data", 100 do yes # still called on save

# I personally never use comma, but use parens around the non-block args:
save(data) do yes

I need to go over this again and try to remember why this was supposedly a better idea :) I did discuss this briefly with @judofyr, maybe he can remember the reasoning?

from imba.

 avatar commented on May 8, 2024

in most cases i use parens too but for people who prefer parens-less syntax it's a useless payload to recall to put coma if last arg is callable.

from imba.

somebee avatar somebee commented on May 8, 2024

The reason I'm leaning towards the existing syntax (besides compatibility) is the fact that it allows for this type of pattern, which I find myself using from time to time:

load something.map do |item|
    item.path

If we had ruby-like precendence, the block must be wrapped:

load something.map(do |item|
    item.path
)

I find it a bit clunkier to need to wrap the block itself, than to sometimes need to wrap the preceding arguments (or use a single comma). It seems easier to control where the do block is with the current syntax, but it's what I am used to, so hard to say.

from imba.

judofyr avatar judofyr commented on May 8, 2024

One "solution" would be to disallow ambiguous do blocks:

# ok:
load(something.map) do |item|
    item.path
# ok:
load(something.map do |item|
    item.path)
# ok:
load something.map(do |item|
    item.path)
# syntax error:
load something.map do |item|
    item.path

from imba.

 avatar commented on May 8, 2024

+1 on disallowing ambiguous do blocks

from imba.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.