| 105 | return 'plot ' + ', '.join([item.to_gnuplot(ctx) for item in self.items]) |
| 106 | |
| 107 | class Set(object): |
| 108 | def __init__(self, value): |
| 109 | self.value = value |
| 110 | |
| 111 | def to_gnuplot(self, ctx): |
| 112 | return 'set ' + self.value |
| 113 | |
| 114 | def fieldrefs(self): |
| 115 | return [] |
| 116 | |
| 117 | class Context(object): |
| 118 | def __init__(self, datafile, field_to_index): |
no outgoing calls
no test coverage detected