Definition at line 142 of file ast.py.
◆ __init__()
def cpp.ast.Define.__init__ |
( |
|
self, |
|
|
|
start, |
|
|
|
end, |
|
|
|
name, |
|
|
|
definition |
|
) |
| |
Reimplemented from cpp.ast.Node.
Definition at line 143 of file ast.py.
143 def __init__(self, start, end, name, definition):
144 Node.__init__(self, start, end)
145 self.name = name
146 self.definition = definition
147
◆ __str__()
def cpp.ast.Define.__str__ |
( |
|
self | ) |
|
Definition at line 148 of file ast.py.
148 def __str__(self):
149 value = '%s %s' % (self.name, self.definition)
150 return self._StringHelper(self.__class__.__name__, value)
151
152
◆ definition
cpp.ast.Define.definition |
◆ name
The documentation for this class was generated from the following file:
- /media/home/debian/src/github/tesseract-ocr/tesseract/unittest/third_party/googletest/googlemock/scripts/generator/cpp/ast.py