@@ -477,29 +477,28 @@ static struct PyModuleDef module_def = {
477477PyMODINIT_FUNC
478478PyInit_pyuast (void )
479479{
480- NodeIface iface = {
481- .InternalType = InternalType,
482- .Token = Token,
483- .ChildrenSize = ChildrenSize,
484- .ChildAt = ChildAt,
485- .RolesSize = RolesSize,
486- .RoleAt = RoleAt,
487- .PropertiesSize = PropertiesSize,
488- .PropertyKeyAt = PropertyKeyAt,
489- .PropertyValueAt = PropertyValueAt,
490- .HasStartOffset = HasStartOffset,
491- .StartOffset = StartOffset,
492- .HasStartLine = HasStartLine,
493- .StartLine = StartLine,
494- .HasStartCol = HasStartCol,
495- .StartCol = StartCol,
496- .HasEndOffset = HasEndOffset,
497- .EndOffset = EndOffset,
498- .HasEndLine = HasEndLine,
499- .EndLine = EndLine,
500- .HasEndCol = HasEndCol,
501- .EndCol = EndCol,
502- };
480+ NodeIface iface;
481+ iface.InternalType = InternalType;
482+ iface.Token = Token;
483+ iface.ChildrenSize = ChildrenSize;
484+ iface.ChildAt = ChildAt;
485+ iface.RolesSize = RolesSize;
486+ iface.RoleAt = RoleAt;
487+ iface.PropertiesSize = PropertiesSize;
488+ iface.PropertyKeyAt = PropertyKeyAt;
489+ iface.PropertyValueAt = PropertyValueAt;
490+ iface.HasStartOffset = HasStartOffset;
491+ iface.StartOffset = StartOffset;
492+ iface.HasStartLine = HasStartLine;
493+ iface.StartLine = StartLine;
494+ iface.HasStartCol = HasStartCol;
495+ iface.StartCol = StartCol;
496+ iface.HasEndOffset = HasEndOffset;
497+ iface.EndOffset = EndOffset;
498+ iface.HasEndLine = HasEndLine;
499+ iface.EndLine = EndLine;
500+ iface.HasEndCol = HasEndCol;
501+ iface.EndCol = EndCol;
503502
504503 ctx = UastNew (iface);
505504 return PyModule_Create (&module_def);
0 commit comments