Skip to content

Commit 4978ad1

Browse files
fishythefishCommit Queue
authored andcommitted
[dart2js_tools] Update pubspec to 3.8 and reformat.
Change-Id: I8216c8d0bcbaf2b9fe6aecb256b9a3f9d5efc47a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/427562 Auto-Submit: Mayank Patke <[email protected]> Reviewed-by: Nate Biggs <[email protected]> Commit-Queue: Nate Biggs <[email protected]>
1 parent 8f1b7c9 commit 4978ad1

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

pkg/dart2js_tools/lib/src/dart2js_mapping.dart

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,9 @@ class _FrameDecoder implements Iterator<String> {
125125
bool moveNext() => ++index < _length;
126126

127127
@override
128-
String get current =>
129-
(index >= 0 && index < _length)
130-
? _internal[index]
131-
: throw StateError('No current value available.');
128+
String get current => (index >= 0 && index < _length)
129+
? _internal[index]
130+
: throw StateError('No current value available.');
132131

133132
bool get hasTokens => index < _length - 1 && _length > 0;
134133

pkg/dart2js_tools/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: >
66
information, deobfuscation of stack-traces and minified names.
77
88
environment:
9-
sdk: '^3.7.0'
9+
sdk: '^3.8.0'
1010

1111
resolution: workspace
1212

0 commit comments

Comments
 (0)