Definition at line 166 of file ast.py.
◆ __init__()
def cpp.ast.Goto.__init__ |
( |
|
self, |
|
|
|
start, |
|
|
|
end, |
|
|
|
label |
|
) |
| |
Reimplemented from cpp.ast.Node.
Definition at line 167 of file ast.py.
167 def __init__(self, start, end, label):
168 Node.__init__(self, start, end)
169 self.label = label
170
◆ __str__()
def cpp.ast.Goto.__str__ |
( |
|
self | ) |
|
Definition at line 171 of file ast.py.
171 def __str__(self):
172 return self._StringHelper(self.__class__.__name__, str(self.label))
173
174
◆ label
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