GithubHelp home page GithubHelp logo

Comments (6)

ggreif avatar ggreif commented on July 30, 2024

{ P.unreachable(); } f () is interpreted as a (curried) function application. The if expression terminates at the penultimate line.

N.B.: The -dt option to moc will dump the type-checked AST in doubt.

from motoko-base.

rossberg avatar rossberg commented on July 30, 2024

Interesting! Wow, you have to be really unlucky to run into this, I don't think it's possible without dead code of type None.

We could try to warn about this, though I'm not sure on what condition. Hm...

from motoko-base.

ggreif avatar ggreif commented on July 30, 2024

This moc session reproduces it:

$ src/moc
Motoko compiler (revision 654ab7c4-dirty)
> func f () : () -> () = func () {};
let f : () -> () -> () = func
> if false { f } () ();

from motoko-base.

rossberg avatar rossberg commented on July 30, 2024

@ggreif, that's a less critical example, though, because () () is not meaningful as a separate statement.

from motoko-base.

rossberg avatar rossberg commented on July 30, 2024

One way to prevent this gotcha would be giving block expressions much lower precedence, so that they cannot be used as nullary expressions (without extra parens). Is it worth it?

A prerequisite would be a disjoint syntax for objects, though, as in #1725.

from motoko-base.

ggreif avatar ggreif commented on July 30, 2024

Throwing in Any will do:

$ src/moc
Motoko compiler (revision 654ab7c4-dirty)
> func f (_ : Any) : () -> () = func () {};
let f : Any -> () -> () = func
> if false { f } f();

But this is clearly code that nobody will write.

from motoko-base.

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.