neverparse: Fix parsing of Modella's neverclaims.

Reported by František Blahoudek.

* src/neverparse/neverclaimparse.yy: Fix.
* src/tgbatest/neverclaimread.test: Test it.
* NEWS: Mention the fix.
This commit is contained in:
Alexandre Duret-Lutz 2014-05-29 15:48:31 +02:00
parent a4934c4f71
commit 6c76ba408e
3 changed files with 39 additions and 4 deletions

View file

@ -1,5 +1,5 @@
/* -*- coding: utf-8 -*-
** Copyright (C) 2010, 2011, 2012, 2013 Laboratoire de Recherche et
** Copyright (C) 2010, 2011, 2012, 2013, 2014 Laboratoire de Recherche et
** Développement de l'Epita (LRDE).
**
** This file is part of Spot, a model checking library.
@ -191,7 +191,7 @@ transitions:
}
formula: FORMULA | "false" { $$ = new std::string("0"); }
formula: FORMULA | IDENT | "false" { $$ = new std::string("0"); }
opt_dest:
/* empty */