Skip to content

Commit 7f440e4

Browse files
authored
Remove renames where the type doesn't exist anymore (#334)
* Remove renames where the type doesn't exist anymore * add changes to CHANGELOG.md * move changes to 1.2.0-wip
1 parent 3b06da9 commit 7f440e4

File tree

5 files changed

+2
-12
lines changed

5 files changed

+2
-12
lines changed

web/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
## 1.2.0-wip
22
- Added missing `FileReader` event getters: `onAbort`, `onError`, `onLoad`,
33
`onLoadStart`, `onProgress`.
4+
- Removed renames `UnderlyingSource` and `UnderlyingSourceBase` where the types
5+
don't exist.
46

57
## 1.1.0
68

web/lib/fix_data.yaml

-9
Original file line numberDiff line numberDiff line change
@@ -1187,15 +1187,6 @@ transforms:
11871187
changes:
11881188
- kind: 'rename'
11891189
newName: 'HTMLUListElement'
1190-
# UnderlyingSourceBase => UnderlyingSource
1191-
- title: "Rename to 'UnderlyingSource'"
1192-
date: 2024-01-12
1193-
element:
1194-
uris: [ 'package:web/web.dart' ]
1195-
class: 'UnderlyingSourceBase'
1196-
changes:
1197-
- kind: 'rename'
1198-
newName: 'UnderlyingSource'
11991190
# UnknownElement => HTMLUnknownElement
12001191
- title: "Rename to 'HTMLUnknownElement'"
12011192
date: 2024-01-12

web/renames.md

-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,6 @@
184184
| TrackElement | HTMLTrackElement |
185185
| TrustedUrl | |
186186
| UListElement | HTMLUListElement |
187-
| UnderlyingSourceBase | UnderlyingSource |
188187
| UnknownElement | HTMLUnknownElement |
189188
| Url | URL |
190189
| UrlSearchParams | URLSearchParams |

web/test_fixes/renames.dart

-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ late TimeElement $138;
135135
late TitleElement $139;
136136
late TrackElement $140;
137137
late UListElement $143;
138-
late UnderlyingSourceBase $144;
139138
late UnknownElement $145;
140139
late Url $146;
141140
late UrlSearchParams $147;

web/test_fixes/renames.dart.expect

-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ late HTMLTimeElement $138;
135135
late HTMLTitleElement $139;
136136
late HTMLTrackElement $140;
137137
late HTMLUListElement $143;
138-
late UnderlyingSource $144;
139138
late HTMLUnknownElement $145;
140139
late URL $146;
141140
late URLSearchParams $147;

0 commit comments

Comments
 (0)