2012-02-12 10:11:04 +00:00

18 lines
306 B
Python

"""
Variable Node
Copyright (c)
See LICENSE for details.
<jtm@robot.is>
"""
from .process import Process
class Variable(Process):
def name(self):
return self._p[1]
def value(self):
return self._p[3]
def parse(self, scope):
return None