Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit be3fb94

Browse files
author
Dart CI
committed
Version 2.19.0-32.0.dev
Merge commit 'ad004cf922b4e18e9d236d6881106d8c0e15faf4' into 'dev'
2 parents cd908e1 + ad004cf commit be3fb94

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

pkg/analyzer/test/src/summary/elements_test.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15646,11 +15646,11 @@ library
1564615646
SymbolLiteral
1564715647
poundSign: # @382
1564815648
components
15649-
components: aaa
15649+
aaa
1565015650
offset: 383
15651-
components: bbb
15651+
bbb
1565215652
offset: 387
15653-
components: ccc
15653+
ccc
1565415654
offset: 391
1565515655
accessors
1565615656
synthetic static get vNull @-1

pkg/analyzer/test/src/summary/resolved_ast_printer.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1643,13 +1643,12 @@ class ResolvedAstPrinter extends ThrowingAstVisitor<void> {
16431643
}
16441644
}
16451645

1646-
/// TODO(scheglov) maybe inline?
16471646
void _writeTokenList(String name, List<Token> tokens) {
16481647
if (tokens.isNotEmpty) {
16491648
_writelnWithIndent(name);
16501649
_withIndent(() {
16511650
for (var token in tokens) {
1652-
_writelnWithIndent('$name: $token');
1651+
_writelnWithIndent(token.lexeme);
16531652
_withIndent(() {
16541653
_writeOffset('offset', token.offset);
16551654
});

tools/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ CHANNEL dev
2727
MAJOR 2
2828
MINOR 19
2929
PATCH 0
30-
PRERELEASE 31
30+
PRERELEASE 32
3131
PRERELEASE_PATCH 0

0 commit comments

Comments
 (0)