MCPcopy Index your code
hub / github.com/nodejs/node / Plot

Class Plot

deps/v8/tools/gc-nvp-trace-processor.py:97–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95 return ' '.join(args)
96
97class 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
107class Set(object):
108 def __init__(self, value):

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected