| 95 | return ' '.join(args) |
| 96 | |
| 97 | class Plot(object): |
| 98 | def __init__(self, *items): |
| 99 | self.items = items |
| 100 | |
| 101 | def fieldrefs(self): |
| 102 | return flatten([item.fieldrefs() for item in self.items]) |
| 103 | |
| 104 | def to_gnuplot(self, ctx): |
| 105 | return 'plot ' + ', '.join([item.to_gnuplot(ctx) for item in self.items]) |
| 106 | |
| 107 | class Set(object): |
| 108 | def __init__(self, value): |
no outgoing calls
no test coverage detected