(self, ctx)
| 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): |
nothing calls this directly
no test coverage detected