comparison backendutils_c.rhope @ 99:e09c2d1d6d5b

Got dataflow graph code working in compiler (nworker_c.rhope)
author Mike Pavone <pavone@retrodev.com>
date Fri, 06 Aug 2010 01:42:37 -0400
parents e73a93fb5de1
children f51c4c17457c
comparison
equal deleted inserted replaced
98:a34a982ecd32 99:e09c2d1d6d5b
33 { 33 {
34 out <- [func]Resolve[string] 34 out <- [func]Resolve[string]
35 } 35 }
36 36
37 Strip Addref@String[op:out] 37 Strip Addref@String[op:out]
38 {
39 out <- op
40 }
41
42 Make Op@String Cat[string,func:out]
43 {
44 out <- [func]Resolve[string]
45 }
46
47 Strip Addref@String Cat[op:out]
48 {
49 out <- op
50 }
51
52 Make Op@String Slice[string,func:out]
53 {
54 out <- [func]Resolve[string]
55 }
56
57 Strip Addref@String Slice[op:out]
38 { 58 {
39 out <- op 59 out <- op
40 } 60 }
41 61
42 Make Op@Whole Number[num,func:out] 62 Make Op@Whole Number[num,func:out]