1
0
forked from GitHub/gf-core

Merge branch 'majestic' of github.com:GrammaticalFramework/gf-core into majestic

This commit is contained in:
John J. Camilleri
2021-09-09 20:42:07 +02:00
13 changed files with 147 additions and 31 deletions

View File

@@ -167,7 +167,7 @@ PyString_AsPgfText(PyObject *pystr)
// ----------------------------------------------------------------------------
object match_lit(PgfUnmarshaller *u, PgfLiteral lit)
object match_lit(PgfMarshaller *this, PgfUnmarshaller *u, PgfLiteral lit)
{
PyObject *pyobj = (PyObject *)lit;
@@ -187,13 +187,13 @@ object match_lit(PgfUnmarshaller *u, PgfLiteral lit)
}
}
object match_expr(PgfUnmarshaller *u, PgfExpr expr)
object match_expr(PgfMarshaller *this, PgfUnmarshaller *u, PgfExpr expr)
{
PyErr_SetString(PyExc_NotImplementedError, "match_expr not implemented");
Py_RETURN_NOTIMPLEMENTED;
}
object match_type(PgfUnmarshaller *u, PgfType ty)
object match_type(PgfMarshaller *this, PgfUnmarshaller *u, PgfType ty)
{
// PySys_WriteStdout(">match_type<\n");