@@ -24,7 +24,7 @@ limitations under the License.
24
24
static const Fodder EF; // Empty fodder.
25
25
26
26
static const LocationRange E; // Empty.
27
-
27
+
28
28
static unsigned long max_builtin = 24 ;
29
29
BuiltinDecl jsonnet_builtin_decl (unsigned long builtin)
30
30
{
@@ -97,7 +97,7 @@ class Desugarer {
97
97
Var *std (void )
98
98
{ return var (id (U" std" )); }
99
99
100
-
100
+
101
101
Local::Bind bind (const Identifier *id, AST *body)
102
102
{
103
103
return Local::Bind (EF, id, EF, body, false , EF, Params{}, false , EF, EF);
@@ -117,7 +117,7 @@ class Desugarer {
117
117
Apply *stdFunc (const String &name, AST *v)
118
118
{
119
119
return make<Apply>(
120
- v->location ,
120
+ v->location ,
121
121
EF,
122
122
make<Index>(E, EF, std (), EF, false , str (name), EF, nullptr , EF, nullptr , EF),
123
123
EF,
@@ -132,7 +132,7 @@ class Desugarer {
132
132
Apply *stdFunc (const LocationRange &loc, const String &name, AST *a, AST *b)
133
133
{
134
134
return make<Apply>(
135
- loc,
135
+ loc,
136
136
EF,
137
137
make<Index>(E, EF, std (), EF, false , str (name), EF, nullptr , EF, nullptr , EF),
138
138
EF,
@@ -342,7 +342,7 @@ class Desugarer {
342
342
out = make<Apply>( // False branch.
343
343
E,
344
344
EF,
345
- var (_aux[prev_for]),
345
+ var (_aux[prev_for]),
346
346
EF,
347
347
Apply::Args {
348
348
{ make<Binary>(E, EF, var (_i[prev_for]), EF, BOP_PLUS, one), EF, },
@@ -400,7 +400,7 @@ class Desugarer {
400
400
false , // trailingComma
401
401
EF,
402
402
make<Conditional>(
403
- ast->location ,
403
+ ast->location ,
404
404
EF,
405
405
make<Binary>(
406
406
E, EF, var (_i[i]), EF, BOP_GREATER_EQ, length (var (_l))),
@@ -419,7 +419,7 @@ class Desugarer {
419
419
)
420
420
))},
421
421
make<Conditional>(
422
- ast->location ,
422
+ ast->location ,
423
423
EF,
424
424
equals (ast->location , type (var (_l)), str (U" array" )),
425
425
EF,
0 commit comments