replace_parser replaces %1 with %2 in the following program
[mala.git] / std / std_statements.h
blob217bc648a2178e4a490d4fb96b39d3be8cca48e3
1 /*
2 std_statements.h - MaLa imperative alike statements
4 Copyright (C) 2004, 2005, Christian Thaeter <chth@gmx.net>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License version 2 as
8 published by the Free Software Foundation.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, contact me.
20 #ifndef MALA_STD_STATEMENTS_H
21 #define MALA_STD_STATEMENTS_H
23 #include "std.h"
25 MALA_PARSER_DEFINE(literal);
26 MALA_PARSER_DEFINE(skip);
27 MALA_PARSER_DEFINE(pass);
28 MALA_PARSER_DEFINE(gc);
29 MALA_PARSER_DEFINE(remove);
30 MALA_PARSER_DEFINE(no);
31 MALA_PARSER_DEFINE(nono);
32 MALA_PARSER_DEFINE(ifelse);
33 MALA_PARSER_DEFINE(sleep);
34 MALA_PARSER_DEFINE(stop);
35 MALA_PARSER_DEFINE(eval);
36 MALA_PARSER_DEFINE(throw);
37 MALA_PARSER_DEFINE(try);
38 MALA_PARSER_DEFINE(replace);
39 //MALA_PARSER_DEFINE(defined);
40 //MALA_PARSER_DEFINE(trace);
41 //MALA_PARSER_DEFINE(gctrace);
42 //MALA_PARSER_DEFINE(exception);
44 //MALA_PARSER_DEFINE(pass);
46 int
47 mala_module_std_statements_init (MalaEngine self);
49 #endif /* MALA_STD_STATEMENTS_H */
52 // Local Variables:
53 // mode: C
54 // c-file-style: "gnu"
55 // End:
56 // arch-tag: 739b75b9-0297-4d15-9efb-8d0cfe5ac3f1
57 // end_of_file