Definition at line 202 of file ast.py.
◆ __init__()
def cpp.ast.Using.__init__ |
( |
|
self, |
|
|
|
start, |
|
|
|
end, |
|
|
|
names |
|
) |
| |
Reimplemented from cpp.ast.Node.
Definition at line 203 of file ast.py.
203 def __init__(self, start, end, names):
204 Node.__init__(self, start, end)
205 self.names = names
206
◆ __str__()
def cpp.ast.Using.__str__ |
( |
|
self | ) |
|
Definition at line 207 of file ast.py.
207 def __str__(self):
208 return self._StringHelper(self.__class__.__name__, str(self.names))
209
210
◆ names
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