File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -121,13 +121,21 @@ export async function generateQueryBuilder(params: {
121
121
operators,
122
122
edgedbVersion : version ,
123
123
} ;
124
+ console . log ( "Generating runtime spec..." ) ;
124
125
generateRuntimeSpec ( generatorParams ) ;
126
+ console . log ( "Generating cast maps..." ) ;
125
127
generateCastMaps ( generatorParams ) ;
128
+ console . log ( "Generating scalars..." ) ;
126
129
generateScalars ( generatorParams ) ;
130
+ console . log ( "Generating object types..." ) ;
127
131
generateObjectTypes ( generatorParams ) ;
132
+ console . log ( "Generating function types..." ) ;
128
133
generateFunctionTypes ( generatorParams ) ;
134
+ console . log ( "Generating operators..." ) ;
129
135
generateOperators ( generatorParams ) ;
136
+ console . log ( "Generating set impl..." ) ;
130
137
generateSetImpl ( generatorParams ) ;
138
+ console . log ( "Generating globals..." ) ;
131
139
generateGlobals ( generatorParams ) ;
132
140
133
141
// TODO: Fix 'fts' module generation properly, for now we just disable
Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ export function generateFuncopTypes<F extends FuncopDef>(
103
103
const implicitCastableRootTypes = getImplicitCastableRootTypes ( casts ) ;
104
104
105
105
for ( const [ funcName , _funcDefs ] of funcops . entries ( ) ) {
106
+ console . log ( "Generating function type for" , funcName ) ;
106
107
const { mod, name } = splitName ( funcName ) ;
107
108
108
109
const code = dir . getModule ( mod ) ;
You can’t perform that action at this time.
0 commit comments