diff --git a/src/Idris/Parser.idr b/src/Idris/Parser.idr index d8b69e006c..febb222eaf 100644 --- a/src/Idris/Parser.idr +++ b/src/Idris/Parser.idr @@ -1707,6 +1707,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 @@ -1721,6 +1724,7 @@ Show CmdArg where show NoArg = "" show NameArg = "" show ExprArg = "" + show DeclsArg = "" show NumberArg = "" show OptionArg = "