Git Product home page Git Product logo

Comments (2)

orangeduck avatar orangeduck commented on July 18, 2024

Yeah this is a tricky issue. You're analysis about the cause is correct. The reason we can't declare Exceptions as actual instances of types is this:

Through some tricks we've managed to let the user declare Type objects such as "Int" at compile time. But it is still impossible for a user to declare instances of this object type at compile time because Types such as "Int" are declared as "extern" (or "global" in Cello). For example this will not compile.

var x = $(Int, 5);

int main(int argc, char** argv) {
  show(x);
}

This is why we declare Exceptions using Singleton, which makes them Type objects like Int. This is done because it would be very annoying for users to have to declare their exception types at the start of the program code and delete them at the end (and we couldn't do it for builtin exceptions anyway).

One hack might be this: rather than use Singleton use a different macro (say Exception) which similarly constructs an empty type, but leaves in an extra flag specifying that this type is an exception type and that upon show to as_str it should also print out any active exception message.

from cello.

orangeduck avatar orangeduck commented on July 18, 2024

Although there are various ways to do this I think the correct way at the end of the day is to just let users get the exception message manually using Exception_Message().

There are a number of alternative workarounds but all of them would essentially be tricking the users where it is better if they gain a real understanding of what is going on as is said above. So I'm closing this issue for now.

from cello.

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.