1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
--- ast/js.py.orig 2017-10-16 21:39:41 UTC
+++ ast/js.py
@@ -11,7 +11,7 @@ class Printer(object):
pass
def start_file(self):
- print '''/* @flow */
+ print('''/* @flow */
/* @generated */
/* jshint ignore:start */
@@ -30,21 +30,21 @@ type Node = {
end?: ?number;
};
-type OperationKind = 'query' | 'mutation' | 'subscription';'''
+type OperationKind = 'query' | 'mutation' | 'subscription';''')
def end_file(self):
pass
def start_type(self, name):
- print
- print 'type %s = Node & {' % name
+ print()
+ print('type %s = Node & {' % name)
kind = name
if kind == 'GenericType':
kind = 'Type'
- print ' kind: \'%s\';' % kind
+ print(' kind: \'%s\';' % kind)
def end_type(self, name):
- print '}'
+ print('}')
def _js_type(self, type, plural):
if plural:
@@ -54,16 +54,16 @@ type OperationKind = 'query' | 'mutation' | 'subscript
def field(self, type, name, nullable, plural):
nullable_char = '?' if nullable else ''
js_type = self._js_type(type, plural)
- print ' %(name)s%(nullable_char)s: %(nullable_char)s%(js_type)s;' % locals()
+ print(' %(name)s%(nullable_char)s: %(nullable_char)s%(js_type)s;' % locals())
def start_union(self, name):
- print ('type %s = ' % name),
+ print(('type %s = ' % name), end=' ')
self._current_options = []
def union_option(self, type):
self._current_options.append(type)
def end_union(self, name):
- print '\n | '.join(self._current_options)
- print
+ print('\n | '.join(self._current_options))
+ print()
self._current_options = None
|