hoaparse: make it possible to read from a string

* src/hoaparse/public.hh, src/hoaparse/parsedecl.hh,
src/hoaparse/hoascan.ll, src/hoaparse/hoaparse.yy: Implement this new
interface.
* wrap/python/spot.py (automata): Use it when the argument contains
a newline.
* wrap/python/tests/automata-io.ipynb: Test it.
This commit is contained in:
Alexandre Duret-Lutz 2015-04-27 00:11:29 +02:00
parent 528cc04cca
commit 5bfed246f9
6 changed files with 221 additions and 38 deletions

View file

@ -390,6 +390,14 @@ namespace spot
return 0;
}
int
hoayystring(const char* data)
{
yy_scan_string(data);
hoayyreset();
return 0;
}
int
hoayyopen(int fd)
{