ports/devel/libgraphqlparser/files/patch-ast-cxx_json_visitor_header.py
Sunpoet Po-Chuan Hsieh f0508af695 Add libgraphqlparser 0.7.0
libgraphqlparser is a parser for GraphQL, a query language for describing data
requirements on complex application data models, implemented in C++11. It can be
used on its own in C++ code (or in C code via the pure C API defined in the c
subdirectory), or you can use it as the basis for an extension module for your
favorite programming language instead of writing your own parser from scratch.

WWW: https://github.com/graphql/libgraphqlparser
2020-05-03 20:46:12 +00:00

24 lines
905 B
Python

--- ast/cxx_json_visitor_header.py.orig 2017-10-16 21:39:41 UTC
+++ ast/cxx_json_visitor_header.py
@@ -13,7 +13,7 @@ class Printer(object):
self._anyFieldIsANode = False
def start_file(self):
- print C_LICENSE_COMMENT + '/** @generated */'
+ print(C_LICENSE_COMMENT + '/** @generated */')
def end_file(self):
pass
@@ -24,9 +24,9 @@ class Printer(object):
def end_type(self, name):
titleName = title(name)
if self._anyFieldIsANode:
- print 'bool visit%s(const %s &node) override;' % (titleName, titleName)
- print 'void endVisit%s(const %s &node) override;' % (titleName, titleName)
- print
+ print('bool visit%s(const %s &node) override;' % (titleName, titleName))
+ print('void endVisit%s(const %s &node) override;' % (titleName, titleName))
+ print()
def field(self, type, name, nullable, plural):
if (not self._anyFieldIsANode and