diff --git a/src/Idris/Parser.idr b/src/Idris/Parser.idr index efcdc29efd..ee1a9ac1a2 100644 --- a/src/Idris/Parser.idr +++ b/src/Idris/Parser.idr @@ -1711,6 +1711,9 @@ data CmdArg : Type where ||| The command takes an expression. ExprArg : CmdArg + ||| The command takes a list of declarations + DeclsArg : CmdArg + ||| The command takes a number. NumberArg : CmdArg @@ -1725,6 +1728,7 @@ Show CmdArg where show NoArg = "" show NameArg = "" show ExprArg = "" + show DeclsArg = "" show NumberArg = "" show OptionArg = "