Code Monkey home page Code Monkey logo

Comments (2)

ndmitchell avatar ndmitchell commented on May 6, 2024

A slightly simpler example:

data State = On | Off deriving (Data, Show, Typeable)
data Mode = Mode {state :: [State]} deriving (Show, Data, Typeable)
main = print =<< cmdArgs Mode{state = enum [[On], [Off]]}

And the smallest change that can fix it:

main = print =<< cmdArgs Mode{state = enum [[On] &= name "on", [Off] &= name "off"]}

So the problem is that enum tries to guess at flag names based on the value in each of [On] and [Off]. It can guess the value from a constructor, but not a list. Since it can't guess the name it raises an exception. The ways round this are:

  • Make it guess a name by peeking inside the list. That works for my revised example, and might work for your original example or not (not sure if it looks at ignore first or not) - but it should be doable in this case. However, it's not going to be possible in all cases.
  • Improve the error message, so it's clear what went wrong and how to fix it.

from cmdargs.

Hrothen avatar Hrothen commented on May 6, 2024

Tested by adding name to the non-ignored flags in my example and it does work properly without needing to name an ignored argument.

from cmdargs.

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.