Updating built in Io code to use += instead of x = x + y
[io/quag.git] / libs / iovm / source / IoCompiler.h
blob8dbe49df9de949aa126d3dac0870583a78fb66cb
1 /*#io
2 Compiler ioDoc(
3 docCopyright("Steve Dekorte", 2002)
4 docLicense("BSD revised")
5 */
7 #ifndef IoCompiler_DEFINED
8 #define IoCompiler_DEFINED 1
10 #include "IoObject.h"
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
16 IoObject *IoCompiler_proto(void *state);
18 IoObject *IoObject_tokensForString(IoObject *self, IoObject *locals, IoMessage *m);
19 IoObject *IoObject_messageForTokens(IoObject *self, IoObject *locals, IoMessage *m);
20 IoObject *IoObject_messageForString(IoObject *self, IoObject *locals, IoMessage *m);
21 IoObject *IoObject_messageForString2(IoObject *self, IoObject *locals, IoMessage *m);
23 #ifdef __cplusplus
25 #endif
26 #endif