This commit is contained in:
Umur Ozkul 2022-10-07 20:26:51 +03:00 committed by GitHub
commit d3087b3d91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -276,8 +276,10 @@ arrayConstructor 'array'
{ return [head, ...tail]; } { return [head, ...tail]; }
recordConstructor 'record' recordConstructor 'record'
= '{' _nl args:array_recordArguments _nl end_of_record = '{' _nl end_of_record
{ return h.constructRecord(args); } { return h.constructRecord([]); }
/ '{' _nl args:array_recordArguments _nl end_of_record
{ return h.constructRecord(args); }
end_of_record end_of_record
= '}' = '}'