Files @ 03af3095927d
Branch filter:

Location: CSY/reowolf/testdata/parser/positive/11.pdl - annotation

MH
remove (de)serialization of AST for now
#version 100

primitive main(in a, out b) {
	msg x = null;
	while (x == null) {
		synchronous {
			if (fires(a))
				x = get(a);
		}
	}
	while (true) {
		synchronous {
			if (fires(b))
				put(b, x);
		}
	}
}