URL: https://svn.lrde.epita.fr/svn/scool/branches/scool-ng
ChangeLog:
2009-02-12 Matthieu Martin <matthieu.mar(a)gmail.com>
Handle simple cases in static class body.
* scoolt/Class.str: Call ClassBodyToCxx on ClassBody.
---
Class.str | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: branches/scool-ng/src/scoolt/Class.str
===================================================================
--- branches/scool-ng/src/scoolt/Class.str (revision 142)
+++ branches/scool-ng/src/scoolt/Class.str (revision 143)
@@ -122,7 +122,7 @@
where
<IdentifierToCxx> idf => cxx_idf
; <AddExactType(| cqualif)> <ParametersToCxx> params => cxx_params // FIXME: cqualif is rather a qualifier of the function than the returned class
- ; ![] => cxx_body
+ ; <ClassBodyToCxx> body => cxx_body // FIXME: Advanced static body class won't work (Static IF)
strategies
URL: https://svn.lrde.epita.fr/svn/scool/branches/scool-ng
ChangeLog:
2009-02-12 Corentin Gallet <gallet(a)lrde.epita.fr>
Fix a typo in the precedent version.
* ChangeLog: The constructor's keyword is "make", not "made".
---
ChangeLog | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: ChangeLog
===================================================================
--- ChangeLog (revision 141)
+++ ChangeLog (working copy)
@@ -2,7 +2,7 @@
Constructor Declaration.
* src/scl-syn/Declaration.sdf: A new declaration : the constructor.
- * src/scl-syn/Lexical.sdf: A new keyword : 'made' (name of the constructors).
+ * src/scl-syn/Lexical.sdf: A new keyword : 'make' (name of the constructors).
* tests/examples/scool_src/point1d.scl: Fix an error in one example.
2009-02-12 Matthieu Martin <matthieu.mar(a)gmail.com>