ports/devel/libgraphqlparser/files/patch-ast-c_impl.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

49 lines
1.6 KiB
Python

--- ast/c_impl.py.orig 2017-10-16 21:39:41 UTC
+++ ast/c_impl.py
@@ -17,13 +17,13 @@ class Printer(object):
self._current_type = None
def start_file(self):
- print C_LICENSE_COMMENT + '''/** @generated */
+ print(C_LICENSE_COMMENT + '''/** @generated */
#include "GraphQLAst.h"
#include "../Ast.h"
using namespace facebook::graphql::ast;
-'''
+''')
def end_file(self):
pass
@@ -32,23 +32,23 @@ using namespace facebook::graphql::ast;
self._current_type = name
def field(self, type, name, nullable, plural):
- print field_prototype(self._current_type, type, name, nullable, plural) + ' {'
- print ' const auto *realNode = (const %s *)node;' % self._current_type
+ print(field_prototype(self._current_type, type, name, nullable, plural) + ' {')
+ print(' const auto *realNode = (const %s *)node;' % self._current_type)
title_name = title(name)
call_get = 'realNode->get%s()' % title_name
if plural:
if nullable:
- print ' return %s ? %s->size() : 0;' % (call_get, call_get)
+ print(' return %s ? %s->size() : 0;' % (call_get, call_get))
else:
- print ' return %s.size();' % call_get
+ print(' return %s.size();' % call_get)
else:
if type in ['string', 'OperationKind', 'boolean']:
- print ' return %s;' % call_get
+ print(' return %s;' % call_get)
else:
fmt = ' return (const struct %s *)%s%s;'
- print fmt % (struct_name(type), '' if nullable else '&', call_get)
+ print(fmt % (struct_name(type), '' if nullable else '&', call_get))
- print '}'
+ print('}')
def end_type(self, name):
pass