Skip to content

Commit

Permalink
formatting updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rutvik110 committed Sep 4, 2024
1 parent a04e7e9 commit a614453
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions web_generator/lib/src/translator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1259,9 +1259,12 @@ class Translator {

final jsObject = _typeReference(_RawType('JSObject', false));
const representationFieldName = '_';
final legacyNameSpace = extendedAttributes.firstWhereOrNull(
(extendedAttribute)=> extendedAttribute.name == 'LegacyNamespace',
)?.rhs.value;
final legacyNameSpace = extendedAttributes
.firstWhereOrNull(
(extendedAttribute) => extendedAttribute.name == 'LegacyNamespace',
)
?.rhs
.value;
final instancePropertyMethods = <code.Method>[];
final staticPropertyMethods = <code.Method>[];
final propertySpecs = _properties(properties, mdnInterface);
Expand Down

0 comments on commit a614453

Please sign in to comment.