chore: add coercion for new frontend

This commit is contained in:
Leonardo de Moura 2020-09-13 10:12:25 -07:00
parent 897289599a
commit 3c2044f06b

View file

@ -1218,8 +1218,8 @@ fun c s =>
def unquotedSymbol : Parser :=
{ fn := unquotedSymbolFn }
instance stringToParserCoe : HasCoe String Parser :=
⟨fun s => symbol s ⟩
instance stringToParserCoeOld : HasCoe String Parser := ⟨fun s => symbol s ⟩
instance stringToParserCoe : Coe String Parser := ⟨fun s => symbol s ⟩
namespace ParserState